Skip to content

Commit

Permalink
Update dependency pyright to v1.1.320 (#137)
Browse files Browse the repository at this point in the history
* Update dependency pyright to v1.1.320

* Update get_schema_imports.py

* update

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: nanne-aben <[email protected]>
Co-authored-by: Nanne Aben <[email protected]>
  • Loading branch information
3 people authored Aug 2, 2023
1 parent 3c4be6e commit 5cda894
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ black==23.7.0
isort==5.12.0
docformatter==1.7.5
mypy==1.4.1
pyright==1.1.318
pyright==1.1.320
# stubs
pandas-stubs==2.0.2.230605
types-setuptools==68.0.0.3
Expand Down
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) # type: ignore
return f"from typing import {imports_string}\n\n"

return ""
Expand Down

0 comments on commit 5cda894

Please sign in to comment.