Skip to content

Commit cc68c06

Browse files
committed
linter fix
1 parent c4679e9 commit cc68c06

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

tests/test_async_chat_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import asyncio
1515
import os
1616
import uuid
17-
from typing import Sequence, Any, Coroutine
17+
from typing import Any, Coroutine, Sequence
1818

1919
import pytest
2020
import pytest_asyncio

tests/test_async_document_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import uuid
1818
import warnings
19-
from typing import Sequence, Any, Coroutine
19+
from typing import Any, Coroutine, Sequence
2020

2121
import pytest
2222
import pytest_asyncio

tests/test_async_index_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import uuid
1818
import warnings
19-
from typing import Sequence, Any, Coroutine
19+
from typing import Any, Coroutine, Sequence
2020

2121
import pytest
2222
import pytest_asyncio

tests/test_async_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import json
1717
import os
1818
import uuid
19-
from typing import Sequence, Any, Coroutine
19+
from typing import Any, Coroutine, Sequence
2020

2121
import pytest
2222
import pytest_asyncio

tests/test_async_vector_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import uuid
1818
import warnings
19-
from typing import Sequence, Any, Coroutine
19+
from typing import Any, Coroutine, Sequence
2020

2121
import pytest
2222
import pytest_asyncio

tests/test_async_vector_store_index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
# limitations under the License.
1414

1515
import asyncio
16-
from typing import Any, Coroutine
1716
import os
1817
import uuid
18+
from typing import Any, Coroutine
1919

2020
import pytest
2121
import pytest_asyncio

tests/test_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import asyncio
1616
import os
1717
import uuid
18-
from typing import Sequence, Any, Coroutine
18+
from typing import Any, Coroutine, Sequence
1919

2020
import asyncpg # type: ignore
2121
import pytest

0 commit comments

Comments
 (0)