Skip to content

Commit

Permalink
import future annotations in test files
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeodor committed Nov 19, 2024
1 parent 722e918 commit 3b9e4b9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 7 additions & 2 deletions python/tests/test_collection_files.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pathlib import Path
from typing import Any, Generator
from __future__ import annotations

from typing import TYPE_CHECKING, Any, Generator
from unittest.mock import MagicMock, Mock, patch

import pytest
Expand All @@ -21,6 +22,10 @@
from numerous.jsonbase64 import dict_to_base64


if TYPE_CHECKING:
from pathlib import Path


ORGANIZATION_ID = "test-org-id"
COLLECTION_KEY = "test-collection-key"
NESTED_COLLECTION_ID = "nested_test_collection"
Expand Down
2 changes: 2 additions & 0 deletions python/tests/test_fs_client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import json
from pathlib import Path
from typing import Any
Expand Down

0 comments on commit 3b9e4b9

Please sign in to comment.