Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwb committed Mar 22, 2023
1 parent 029451b commit e761360
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdks/python/apache_beam/dataframe/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -5410,8 +5410,8 @@ def _maybe_elementwise_or(self, right):
return _maybe_elementwise_or


DeferredSeries.__or__ = _create_maybe_elementwise_or(pd.Series) # pylint: disable=operator
DeferredDataFrame.__or__ = _create_maybe_elementwise_or(pd.DataFrame) # pylint: disable=operator
DeferredSeries.__or__ = _create_maybe_elementwise_or(pd.Series) # type: ignore
DeferredDataFrame.__or__ = _create_maybe_elementwise_or(pd.DataFrame) # type: ignore


for name in ['lt', 'le', 'gt', 'ge', 'eq', 'ne']:
Expand Down

0 comments on commit e761360

Please sign in to comment.