@@ -241,7 +241,7 @@ def __init__(self, directory: Directory) -> None:
241241 )
242242 self .list_individuals = ( # pyright: ignore[reportDeprecated]
243243 _legacy_response .to_raw_response_wrapper (
244- directory .list_individuals # pyright: ignore[reportDeprecated],
244+ directory .list_individuals , # pyright: ignore[reportDeprecated],
245245 )
246246 )
247247
@@ -255,7 +255,7 @@ def __init__(self, directory: AsyncDirectory) -> None:
255255 )
256256 self .list_individuals = ( # pyright: ignore[reportDeprecated]
257257 _legacy_response .async_to_raw_response_wrapper (
258- directory .list_individuals # pyright: ignore[reportDeprecated],
258+ directory .list_individuals , # pyright: ignore[reportDeprecated],
259259 )
260260 )
261261
@@ -269,7 +269,7 @@ def __init__(self, directory: Directory) -> None:
269269 )
270270 self .list_individuals = ( # pyright: ignore[reportDeprecated]
271271 to_streamed_response_wrapper (
272- directory .list_individuals # pyright: ignore[reportDeprecated],
272+ directory .list_individuals , # pyright: ignore[reportDeprecated],
273273 )
274274 )
275275
@@ -283,6 +283,6 @@ def __init__(self, directory: AsyncDirectory) -> None:
283283 )
284284 self .list_individuals = ( # pyright: ignore[reportDeprecated]
285285 async_to_streamed_response_wrapper (
286- directory .list_individuals # pyright: ignore[reportDeprecated],
286+ directory .list_individuals , # pyright: ignore[reportDeprecated],
287287 )
288288 )
0 commit comments