@@ -4254,8 +4254,6 @@ def serialize(self) -> JsonDict:
4254
4254
"alias_tvars" : [v .serialize () for v in self .alias_tvars ],
4255
4255
"no_args" : self .no_args ,
4256
4256
"normalized" : self .normalized ,
4257
- "line" : self .line ,
4258
- "column" : self .column ,
4259
4257
"python_3_12_type_alias" : self .python_3_12_type_alias ,
4260
4258
}
4261
4259
return data
@@ -4270,15 +4268,13 @@ def deserialize(cls, data: JsonDict) -> TypeAlias:
4270
4268
target = mypy .types .deserialize_type (data ["target" ])
4271
4269
no_args = data ["no_args" ]
4272
4270
normalized = data ["normalized" ]
4273
- line = data ["line" ]
4274
- column = data ["column" ]
4275
4271
python_3_12_type_alias = data ["python_3_12_type_alias" ]
4276
4272
return cls (
4277
4273
target ,
4278
4274
fullname ,
4279
4275
module ,
4280
- line ,
4281
- column ,
4276
+ - 1 ,
4277
+ - 1 ,
4282
4278
alias_tvars = cast (list [mypy .types .TypeVarLikeType ], alias_tvars ),
4283
4279
no_args = no_args ,
4284
4280
normalized = normalized ,
@@ -4291,8 +4287,6 @@ def write(self, data: Buffer) -> None:
4291
4287
write_str (data , self .module )
4292
4288
self .target .write (data )
4293
4289
mypy .types .write_type_list (data , self .alias_tvars )
4294
- write_int (data , self .line )
4295
- write_int (data , self .column )
4296
4290
write_bool (data , self .no_args )
4297
4291
write_bool (data , self .normalized )
4298
4292
write_bool (data , self .python_3_12_type_alias )
@@ -4307,8 +4301,8 @@ def read(cls, data: Buffer) -> TypeAlias:
4307
4301
target ,
4308
4302
fullname ,
4309
4303
module ,
4310
- read_int ( data ) ,
4311
- read_int ( data ) ,
4304
+ - 1 ,
4305
+ - 1 ,
4312
4306
alias_tvars = alias_tvars ,
4313
4307
no_args = read_bool (data ),
4314
4308
normalized = read_bool (data ),
0 commit comments