Skip to content

Commit f051182

Browse files
committed
make format
1 parent 544b5a3 commit f051182

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

examples/basic/tools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def get_weather(city: Annotated[str, "The city to get the weather for"]) -> Weat
1818
print("[debug] get_weather called")
1919
return Weather(city=city, temperature_range="14-20C", conditions="Sunny with wind.")
2020

21+
2122
agent = Agent(
2223
name="Hello world",
2324
instructions="You are a helpful agent.",

tests/test_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
from contextlib import nullcontext
21
import os
2+
from contextlib import nullcontext
33
from typing import Any
44

55
import openai
6+
import pytest
67
from openai.types.chat.chat_completion import ChatCompletion, Choice
78
from openai.types.chat.chat_completion_message import ChatCompletionMessage
89
from openai.types.responses import ResponseCompletedEvent
9-
import pytest
1010

11-
from agents import __version__
1211
from agents import (
1312
ModelSettings,
1413
ModelTracing,
14+
__version__,
1515
set_default_openai_api,
1616
set_default_openai_client,
1717
set_default_openai_key,

0 commit comments

Comments
 (0)