Skip to content

Commit dad9bea

Browse files
tom-tanmr-c
authored andcommitted
Fix typo
1 parent 2c1c880 commit dad9bea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

schema_salad/metaschema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def resolve(
600600

601601
if doc_.endswith("[]"):
602602
salad_versions = [int(v) for v in loadingOptions.salad_version[1:].split(".")]
603-
items = "" # type: Union[List[Union[dict[str, Any], str]], dict[str, Any], str]
603+
items = "" # type: Union[List[Union[Dict[str, Any], str]], Dict[str, Any], str]
604604
if salad_versions < [1, 3]:
605605
items = expand_url(doc_[0:-2], baseuri, loadingOptions, False, True, self.refScope)
606606
else:

schema_salad/python_codegen_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def resolve(
597597

598598
if doc_.endswith("[]"):
599599
salad_versions = [int(v) for v in loadingOptions.salad_version[1:].split(".")]
600-
items = "" # type: Union[List[Union[dict[str, Any], str]], dict[str, Any], str]
600+
items = "" # type: Union[List[Union[Dict[str, Any], str]], Dict[str, Any], str]
601601
if salad_versions < [1, 3]:
602602
items = expand_url(doc_[0:-2], baseuri, loadingOptions, False, True, self.refScope)
603603
else:

0 commit comments

Comments
 (0)