Skip to content

Commit 90bf9fc

Browse files
committed
fix ruff linting issues and sort imports in thread-safety tests
1 parent 3827806 commit 90bf9fc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

openapi_python_sdk/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def client(self) -> Any:
3434
"""
3535
if self._client is not None:
3636
return self._client
37-
37+
3838
if not hasattr(self._thread_local, "client"):
3939
self._thread_local.client = httpx.Client(timeout=self.timeout)
4040
return self._thread_local.client

openapi_python_sdk/oauth_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def client(self) -> Any:
3535
"""
3636
if self._client is not None:
3737
return self._client
38-
38+
3939
if not hasattr(self._thread_local, "client"):
4040
self._thread_local.client = httpx.Client(timeout=self.timeout)
4141
return self._thread_local.client

0 commit comments

Comments
 (0)