Skip to content

Commit

Permalink
chore(internal): reformat imports (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Apr 29, 2024
1 parent e599641 commit 18560f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/api_resources/beta/tools/test_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from anthropic import Anthropic, AsyncAnthropic
from tests.utils import assert_matches_type
from anthropic.types.beta.tools.tools_beta_message import ToolsBetaMessage
from anthropic.types.beta.tools import ToolsBetaMessage

base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")

Expand Down
2 changes: 1 addition & 1 deletion tests/api_resources/test_completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from anthropic import Anthropic, AsyncAnthropic
from tests.utils import assert_matches_type
from anthropic.types.completion import Completion
from anthropic.types import Completion

base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")

Expand Down
2 changes: 1 addition & 1 deletion tests/api_resources/test_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from anthropic import Anthropic, AsyncAnthropic
from tests.utils import assert_matches_type
from anthropic.types.message import Message
from anthropic.types import Message

base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")

Expand Down

0 comments on commit 18560f9

Please sign in to comment.