Skip to content

Commit ee820fc

Browse files
committed
Fix linting error: line too long
1 parent 2511659 commit ee820fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/agents/extensions/models/litellm_model.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ async def get_response(
111111
)
112112

113113
message: litellm.types.utils.Message | None = None
114-
first_choice: litellm.types.utils.Choices | litellm.types.utils.StreamingChoices | None = (
115-
None
116-
)
114+
first_choice: (
115+
litellm.types.utils.Choices | litellm.types.utils.StreamingChoices | None
116+
) = None
117117
if response.choices and len(response.choices) > 0:
118118
first_choice = response.choices[0]
119119
assert isinstance(first_choice, litellm.types.utils.Choices)

0 commit comments

Comments
 (0)