Skip to content

Commit

Permalink
chore: Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Oct 24, 2023
1 parent cfb0d98 commit dfecd1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/series/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ def __column_consortium_standard__(self, *, api_version: str | None = None) -> A
"""
return (
dataframe_api_compat.polars_standard.convert_to_standard_compliant_column(
self, api_version=api_version
self, api_version=api_version # type: ignore[arg-type]
)
)

Expand Down

0 comments on commit dfecd1d

Please sign in to comment.