Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkay committed Jan 26, 2024
1 parent 840cadc commit a31a5ab
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/unit/test_collect_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,15 @@ class ProviderSchema(DataBagSchema):
(
(dedent("""Foo2: int=1"""), "Foo2"),
(dedent("""Bar: str='baz'"""), "Bar"),
(dedent("""
(
dedent(
"""
from typing import List
Baz: List[int]=[1,2,3]"""), "Baz"),
Baz: List[int]=[1,2,3]"""
),
"Baz",
),
),
)
def test_get_schema_from_module_wrong_type(tmp_path, schema_source, schema_name):
Expand Down

0 comments on commit a31a5ab

Please sign in to comment.