Skip to content

Commit

Permalink
clean up linter violation for Tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
codecae committed Sep 28, 2023
1 parent cfab8b9 commit 89e3d67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt_semantic_interfaces/parsing/schemas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import List
from typing import List, Tuple

from referencing import Registry, Resource
from referencing.jsonschema import DRAFT7
Expand Down Expand Up @@ -340,7 +340,7 @@
time_spine_table_configuration_schema["$id"]: time_spine_table_configuration_schema,
}

resources: List[tuple[str, Resource]] = [(str(k), DRAFT7.create_resource(v)) for k, v in schema_store.items()]
resources: List[Tuple[str, Resource]] = [(str(k), DRAFT7.create_resource(v)) for k, v in schema_store.items()]
registry: Registry = Registry().with_resources(resources)
semantic_model_validator = SchemaValidator(semantic_model_schema, registry=registry)
metric_validator = SchemaValidator(metric_schema, registry=registry)
Expand Down

0 comments on commit 89e3d67

Please sign in to comment.