8000 chore(internal): remove some duplicated imports (#788) · anthropics/anthropic-sdk-python@370d23c · GitHub
[go: up one dir, main page]

8000
Skip to content

Commit 370d23c

Browse files
chore(internal): remove some duplicated imports (#788)
1 parent 5c632ea commit 370d23c

File tree

1 file changed

+4
-6
lines changed
  • src/anthropic/resources/beta

1 file changed

+4
-6
lines changed

src/anthropic/resources/beta/beta.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,24 @@
22

33
from __future__ import annotations
44

5-
from .messages import (
5+
from ..._compat import cached_property
6+
from ..._resource import SyncAPIResource, AsyncAPIResource
7+
from .messages.messages import (
68
Messages,
79
AsyncMessages,
810
MessagesWithRawResponse,
911
AsyncMessagesWithRawResponse,
1012
MessagesWithStreamingResponse,
1113
AsyncMessagesWithStreamingResponse,
1214
)
13-
from ..._compat import cached_property
14-
from ..._resource import SyncAPIResource, AsyncAPIResource
15-
from .prompt_caching import (
15+
from .prompt_caching.prompt_caching import (
1616
PromptCaching,
1717
AsyncPromptCaching,
1818
PromptCachingWithRawResponse,
1919
AsyncPromptCachingWithRawResponse,
2020
PromptCachingWithStreamingResponse,
2121
AsyncPromptCachingWithStreamingResponse,
2222
)
23-
from .messages.messages import Messages, AsyncMessages
24-
from .prompt_caching.prompt_caching import PromptCaching, AsyncPromptCaching
2523

2624
__all__ = ["Beta", "AsyncBeta"]
2725

0 commit comments

Comments
 (0)
0