From 9293761518a65da9a785bc0eed83e065f89a9bc1 Mon Sep 17 00:00:00 2001 From: Ali Momen Sani Date: Mon, 16 Feb 2026 12:58:29 +0100 Subject: [PATCH] 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. --- stream_chat/tests/test_types.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/stream_chat/tests/test_types.py b/stream_chat/tests/test_types.py index 76a096c..91a25f3 100644 --- a/stream_chat/tests/test_types.py +++ b/stream_chat/tests/test_types.py @@ -1,10 +1,6 @@ """Tests for type definitions.""" -from stream_chat.types.base import ( - ParsedPredefinedFilterResponse, - SortOrder, - SortParam, -) +from stream_chat.types.base import ParsedPredefinedFilterResponse, SortOrder, SortParam class TestParsedPredefinedFilterResponse: