Skip to content

Commit d201731

Browse files
committed
fix NEXUS-703: fixed linting
1 parent dac51c1 commit d201731

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unstructured_client/_hooks/custom/split_pdf_hook.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def _get_asyncio_loop() -> asyncio.AbstractEventLoop:
7272
return loop
7373

7474
def _run_coroutines_in_separate_thread(
75-
coroutines_task: Coroutine[Any, Any, list[tuple[Any, httpx.Response]]]
76-
) -> list[httpx.Response]:
75+
coroutines_task: Coroutine[Any, Any, list[tuple[int, httpx.Response]]],
76+
) -> list[tuple[int, httpx.Response]]:
7777
loop = _get_asyncio_loop()
7878
return loop.run_until_complete(coroutines_task)
7979

0 commit comments

Comments
 (0)