@@ -174,7 +174,7 @@ async def location_schema() -> NodeSchemaAPI:
174174 },
175175 ],
176176 }
177- return NodeSchema (** data ).convert_api () # type: ignore
177+ return NodeSchema (** data ).convert_api ()
178178
179179
180180@pytest .fixture
@@ -216,7 +216,7 @@ async def location_schema_with_dropdown() -> NodeSchemaAPI:
216216 },
217217 ],
218218 }
219- return NodeSchema (** data ).convert_api () # type: ignore
219+ return NodeSchema (** data ).convert_api ()
220220
221221
222222@pytest .fixture
@@ -281,7 +281,7 @@ async def schema_with_hfid() -> dict[str, NodeSchemaAPI]:
281281 ],
282282 },
283283 }
284- return {k : NodeSchema (** v ).convert_api () for k , v in data .items ()} # type: ignore
284+ return {k : NodeSchema (** v ).convert_api () for k , v in data .items ()}
285285
286286
287287@pytest .fixture
@@ -295,7 +295,7 @@ async def std_group_schema() -> NodeSchemaAPI:
295295 {"name" : "description" , "kind" : "String" , "optional" : True },
296296 ],
297297 }
298- return NodeSchema (** data ).convert_api () # type: ignore
298+ return NodeSchema (** data ).convert_api ()
299299
300300
301301@pytest .fixture
@@ -679,7 +679,7 @@ async def tag_schema() -> NodeSchemaAPI:
679679 {"name" : "description" , "kind" : "Text" , "optional" : True },
680680 ],
681681 }
682- return NodeSchema (** data ).convert_api () # type: ignore
682+ return NodeSchema (** data ).convert_api ()
683683
684684
685685@pytest .fixture
@@ -917,7 +917,7 @@ async def ipaddress_schema() -> NodeSchemaAPI:
917917 }
918918 ],
919919 }
920- return NodeSchema (** data ).convert_api () # type: ignore
920+ return NodeSchema (** data ).convert_api ()
921921
922922
923923@pytest .fixture
@@ -941,7 +941,7 @@ async def ipnetwork_schema() -> NodeSchemaAPI:
941941 }
942942 ],
943943 }
944- return NodeSchema (** data ).convert_api () # type: ignore
944+ return NodeSchema (** data ).convert_api ()
945945
946946
947947@pytest .fixture
@@ -954,7 +954,7 @@ async def ipam_ipprefix_schema() -> NodeSchemaAPI:
954954 "order_by" : ["prefix_value" ],
955955 "inherit_from" : ["BuiltinIPAddress" ],
956956 }
957- return NodeSchema (** data ).convert_api () # type: ignore
957+ return NodeSchema (** data ).convert_api ()
958958
959959
960960@pytest .fixture
@@ -986,7 +986,7 @@ async def simple_device_schema() -> NodeSchemaAPI:
986986 },
987987 ],
988988 }
989- return NodeSchema (** data ).convert_api () # type: ignore
989+ return NodeSchema (** data ).convert_api ()
990990
991991
992992@pytest .fixture
@@ -1106,7 +1106,7 @@ async def ipaddress_pool_schema() -> NodeSchemaAPI:
11061106 },
11071107 ],
11081108 }
1109- return NodeSchema (** data ).convert_api () # type: ignore
1109+ return NodeSchema (** data ).convert_api ()
11101110
11111111
11121112@pytest .fixture
@@ -1165,7 +1165,7 @@ async def ipprefix_pool_schema() -> NodeSchemaAPI:
11651165 },
11661166 ],
11671167 }
1168- return NodeSchema (** data ).convert_api () # type: ignore
1168+ return NodeSchema (** data ).convert_api ()
11691169
11701170
11711171@pytest .fixture
@@ -1274,7 +1274,7 @@ async def device_schema() -> NodeSchemaAPI:
12741274 {"name" : "artifacts" , "peer" : "CoreArtifact" , "optional" : True , "cardinality" : "many" , "kind" : "Generic" },
12751275 ],
12761276 }
1277- return NodeSchema (** data ).convert_api () # type: ignore
1277+ return NodeSchema (** data ).convert_api ()
12781278
12791279
12801280@pytest .fixture
@@ -1448,7 +1448,7 @@ async def artifact_definition_schema() -> NodeSchemaAPI:
14481448 {"name" : "artifact_name" , "kind" : "Text" },
14491449 ],
14501450 }
1451- return NodeSchema (** data ).convert_api () # type: ignore
1451+ return NodeSchema (** data ).convert_api ()
14521452
14531453
14541454@pytest .fixture
0 commit comments