Skip to content

Commit

Permalink
Update get_schema_imports.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nanne-aben authored Aug 2, 2023
1 parent 53fbffa commit f8e57ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typedspark/_schema/get_schema_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _typing_imports(encountered_datatypes: set[Type[DataType]], include_document

if len(imports) > 0:
imports = sorted(imports)
imports_string = ", ".join(imports)
imports_string = ", ".join(imports) # typing: ignore
return f"from typing import {imports_string}\n\n"

return ""
Expand Down

0 comments on commit f8e57ec

Please sign in to comment.