Skip to content

Commit 8e5a156

Browse files
chore(internal): update formatting (#941)
1 parent ec65124 commit 8e5a156

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

src/openai/__init__.py

+1-11
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,7 @@
88
from . import types
99
from ._types import NoneType, Transport, ProxiesTypes
1010
from ._utils import file_from_path
11-
from ._client import (
12-
Client,
13-
OpenAI,
14-
Stream,
15-
Timeout,
16-
Transport,
17-
AsyncClient,
18-
AsyncOpenAI,
19-
AsyncStream,
20-
RequestOptions,
21-
)
11+
from ._client import Client, OpenAI, Stream, Timeout, Transport, AsyncClient, AsyncOpenAI, AsyncStream, RequestOptions
2212
from ._version import __title__, __version__
2313
from ._exceptions import (
2414
APIError,

src/openai/_client.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,19 @@
2020
ProxiesTypes,
2121
RequestOptions,
2222
)
23-
from ._utils import is_given, is_mapping, get_async_library
23+
from ._utils import (
24+
is_given,
25+
is_mapping,
26+
get_async_library,
27+
)
2428
from ._version import __version__
2529
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
2630
from ._exceptions import OpenAIError, APIStatusError
27-
from ._base_client import DEFAULT_MAX_RETRIES, SyncAPIClient, AsyncAPIClient
31+
from ._base_client import (
32+
DEFAULT_MAX_RETRIES,
33+
SyncAPIClient,
34+
AsyncAPIClient,
35+
)
2836

2937
__all__ = [
3038
"Timeout",

0 commit comments

Comments
 (0)