Skip to content

Commit aefa445

Browse files
author
Adam Klein
committed
trying make lint happy
1 parent b029def commit aefa445

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/apify_client/_http_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ def __init__(
6161
headers['Authorization'] = f'Bearer {token}'
6262

6363
self.httpx_client = httpx.Client(headers=headers, follow_redirects=True, timeout=timeout_secs, verify=ssl_ctx)
64-
self.httpx_async_client = httpx.AsyncClient(headers=headers, follow_redirects=True, timeout=timeout_secs, verify=ssl_ctx)
64+
self.httpx_async_client = httpx.AsyncClient(
65+
headers=headers, follow_redirects=True, timeout=timeout_secs, verify=ssl_ctx
66+
)
6567

6668
self.stats = stats or Statistics()
6769

src/apify_client/client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
API_VERSION = 'v2'
6060

6161

62-
6362
class _BaseApifyClient:
6463
http_client: HTTPClient | HTTPClientAsync
6564

@@ -72,7 +71,7 @@ def __init__(
7271
max_retries: int | None = 8,
7372
min_delay_between_retries_millis: int | None = 500,
7473
timeout_secs: int | None = DEFAULT_TIMEOUT,
75-
ssl_ctx: SSLContext | str | bool = True
74+
ssl_ctx: SSLContext | str | bool = True,
7675
) -> None:
7776
"""Initialize a new instance.
7877
@@ -113,7 +112,7 @@ def __init__(
113112
max_retries: int | None = 8,
114113
min_delay_between_retries_millis: int | None = 500,
115114
timeout_secs: int | None = DEFAULT_TIMEOUT,
116-
ssl_ctx: SSLContext | str | bool = True
115+
ssl_ctx: SSLContext | str | bool = True,
117116
) -> None:
118117
"""Initialize a new instance.
119118

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)