Skip to content

Commit 80a48dd

Browse files
committed
fix new style typing syntax
1 parent 051620d commit 80a48dd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_ingestion.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import re
99
from pathlib import Path
10-
from typing import TypedDict
10+
from typing import Set, TypedDict
1111

1212
import pytest
1313

@@ -50,12 +50,12 @@ def test_run_ingest_query(temp_directory: Path, sample_query: IngestionQuery) ->
5050

5151

5252
class PatternScenario(TypedDict):
53-
include_patterns: set[str]
54-
ignore_patterns: set[str]
53+
include_patterns: Set[str]
54+
ignore_patterns: Set[str]
5555
expected_num_files: int
56-
expected_content: set[str]
57-
expected_structure: set[str]
58-
expected_not_structure: set[str]
56+
expected_content: Set[str]
57+
expected_structure: Set[str]
58+
expected_not_structure: Set[str]
5959

6060

6161
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)