Skip to content

Commit

Permalink
chore(internal): remove some duplicated imports (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Dec 13, 2024
1 parent 287ebd2 commit 576ae9b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/anthropic/resources/beta/beta.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,24 @@

from __future__ import annotations

from .messages import (
from ..._compat import cached_property
from ..._resource import SyncAPIResource, AsyncAPIResource
from .messages.messages import (
Messages,
AsyncMessages,
MessagesWithRawResponse,
AsyncMessagesWithRawResponse,
MessagesWithStreamingResponse,
AsyncMessagesWithStreamingResponse,
)
from ..._compat import cached_property
from ..._resource import SyncAPIResource, AsyncAPIResource
from .prompt_caching import (
from .prompt_caching.prompt_caching import (
PromptCaching,
AsyncPromptCaching,
PromptCachingWithRawResponse,
AsyncPromptCachingWithRawResponse,
PromptCachingWithStreamingResponse,
AsyncPromptCachingWithStreamingResponse,
)
from .messages.messages import Messages, AsyncMessages
from .prompt_caching.prompt_caching import PromptCaching, AsyncPromptCaching

__all__ = ["Beta", "AsyncBeta"]

Expand Down

0 comments on commit 576ae9b

Please sign in to comment.