Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid throwing exception on Union types #1378

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions pandera/mypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class Schema(BaseSchema):
if not hasattr(def_, "type") or def_.type is None:
continue
type_ = def_.type
if get_typename(def_.type) in FIELD_GENERICS_FULLNAMES:
if str(def_.type) in FIELD_GENERICS_FULLNAMES:
type_.args = () # erase generic type arg


Expand All @@ -154,7 +154,3 @@ def get_fullname(x: Union[FuncBase, SymbolNode]) -> str:
if callable(fn): # pragma: no cover
return fn()
return fn


def get_typename(x) -> str:
return f"{x.type.module_name}.{x.type.name}"