|
58 | 58 | from types import TracebackType |
59 | 59 |
|
60 | 60 |
|
61 | | -# pylint: disable=redefined-builtin disable=too-many-lines |
62 | | - |
63 | 61 | SchemaType = TypeVar("SchemaType", bound=CoreNode) |
64 | 62 | SchemaTypeSync = TypeVar("SchemaTypeSync", bound=CoreNodeSync) |
65 | 63 |
|
@@ -711,7 +709,7 @@ async def filters( |
711 | 709 | fragment=fragment, |
712 | 710 | prefetch_relationships=prefetch_relationships, |
713 | 711 | partial_match=partial_match, |
714 | | - # property=property, |
| 712 | + property=property, |
715 | 713 | ) |
716 | 714 | query = Query(query=query_data) |
717 | 715 | response = await self.execute_graphql( |
@@ -1147,7 +1145,7 @@ async def allocate_next_ip_address( |
1147 | 1145 | async def allocate_next_ip_address( |
1148 | 1146 | self, |
1149 | 1147 | resource_pool: CoreNode, |
1150 | | - kind: type[SchemaType] | None = None, # pylint: disable=unused-argument |
| 1148 | + kind: type[SchemaType] | None = None, # noqa: ARG002 |
1151 | 1149 | identifier: str | None = None, |
1152 | 1150 | prefix_length: int | None = None, |
1153 | 1151 | address_type: str | None = None, |
@@ -1297,7 +1295,7 @@ async def allocate_next_ip_prefix( |
1297 | 1295 | async def allocate_next_ip_prefix( |
1298 | 1296 | self, |
1299 | 1297 | resource_pool: CoreNode, |
1300 | | - kind: type[SchemaType] | None = None, # pylint: disable=unused-argument |
| 1298 | + kind: type[SchemaType] | None = None, # noqa: ARG002 |
1301 | 1299 | identifier: str | None = None, |
1302 | 1300 | prefix_length: int | None = None, |
1303 | 1301 | member_type: str | None = None, |
@@ -2181,7 +2179,7 @@ def allocate_next_ip_address( |
2181 | 2179 | def allocate_next_ip_address( |
2182 | 2180 | self, |
2183 | 2181 | resource_pool: CoreNodeSync, |
2184 | | - kind: type[SchemaTypeSync] | None = None, # pylint: disable=unused-argument |
| 2182 | + kind: type[SchemaTypeSync] | None = None, # noqa: ARG002 |
2185 | 2183 | identifier: str | None = None, |
2186 | 2184 | prefix_length: int | None = None, |
2187 | 2185 | address_type: str | None = None, |
@@ -2327,7 +2325,7 @@ def allocate_next_ip_prefix( |
2327 | 2325 | def allocate_next_ip_prefix( |
2328 | 2326 | self, |
2329 | 2327 | resource_pool: CoreNodeSync, |
2330 | | - kind: type[SchemaTypeSync] | None = None, # pylint: disable=unused-argument |
| 2328 | + kind: type[SchemaTypeSync] | None = None, # noqa: ARG002 |
2331 | 2329 | identifier: str | None = None, |
2332 | 2330 | prefix_length: int | None = None, |
2333 | 2331 | member_type: str | None = None, |
|
0 commit comments