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

Bugfix/1760 Bad type hint for argument unique for DataFrameSchema #1817

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pandera/api/dataframe/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def __init__(
self.strict: Union[bool, str] = strict
self._coerce = coerce
self.ordered = ordered
self._unique = unique
self._unique = [unique] if isinstance(unique, str) else unique
self.report_duplicates = report_duplicates
self.unique_column_names = unique_column_names
self.add_missing_columns = add_missing_columns
Expand Down
2 changes: 1 addition & 1 deletion pandera/api/pyspark/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
self.strict: Union[bool, str] = strict
self._coerce = coerce
self.ordered = ordered
self._unique = unique
self._unique = [unique] if isinstance(unique, str) else unique

Check warning on line 149 in pandera/api/pyspark/container.py

View check run for this annotation

Codecov / codecov/patch

pandera/api/pyspark/container.py#L149

Added line #L149 was not covered by tests
self.report_duplicates = report_duplicates
self.unique_column_names = unique_column_names

Expand Down