Skip to content

Commit 1dc90b5

Browse files
authored
isort 6.x can't be installed (requires Python >=3.9), so isort 5.13.2 is used instead. isort 5.x collapses multi-line imports to a single line when they fit within the line length, while isort 6.x preserves the multi-line format. The fix is simply collapsing the import to one line, which is valid under both versions. (#223)
1 parent 59fbd73 commit 1dc90b5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

stream_chat/tests/test_types.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
"""Tests for type definitions."""
22

3-
from stream_chat.types.base import (
4-
ParsedPredefinedFilterResponse,
5-
SortOrder,
6-
SortParam,
7-
)
3+
from stream_chat.types.base import ParsedPredefinedFilterResponse, SortOrder, SortParam
84

95

106
class TestParsedPredefinedFilterResponse:

0 commit comments

Comments
 (0)