Skip to content

Commit 7f1c96d

Browse files
chore(internal): minor formatting change
1 parent 7b620cc commit 7f1c96d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/finch/resources/hris/directory.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)