Skip to content

Commit

Permalink
suppress PR02
Browse files Browse the repository at this point in the history
  • Loading branch information
noloerino committed Sep 12, 2024
1 parent 4a066e1 commit ae5b571
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modin/core/storage_formats/base/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ def eq(self, other, **kwargs): # noqa: PR02
@doc_utils.doc_binary_method(
operation="equality comparison", sign="==", op_type="series_comparison"
)
def series_eq(self, other, **kwargs):
def series_eq(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.Series.eq)(
self,
other=other,
Expand Down Expand Up @@ -702,7 +702,7 @@ def ge(self, other, **kwargs): # noqa: PR02
sign=">=",
op_type="series_comparison",
)
def series_ge(self, other, **kwargs):
def series_ge(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.Series.ge)(
self,
other=other,
Expand All @@ -720,7 +720,7 @@ def gt(self, other, **kwargs): # noqa: PR02
@doc_utils.doc_binary_method(
operation="greater than comparison", sign=">", op_type="series_comparison"
)
def series_gt(self, other, **kwargs):
def series_gt(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.Series.gt)(
self,
other=other,
Expand All @@ -740,7 +740,7 @@ def le(self, other, **kwargs): # noqa: PR02
sign="<=",
op_type="series_comparison",
)
def series_le(self, other, **kwargs):
def series_le(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.Series.le)(
self,
other=other,
Expand All @@ -758,7 +758,7 @@ def lt(self, other, **kwargs): # noqa: PR02
@doc_utils.doc_binary_method(
operation="less than", sign="<", op_type="series_comparison"
)
def series_lt(self, other, **kwargs):
def series_lt(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.Series.lt)(
self,
other=other,
Expand Down Expand Up @@ -885,7 +885,7 @@ def ne(self, other, **kwargs): # noqa: PR02
@doc_utils.doc_binary_method(
operation="not equal comparison", sign="!=", op_type="series_comparison"
)
def series_ne(self, other, **kwargs):
def series_ne(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.Series.ne)(
self,
other=other,
Expand Down

0 comments on commit ae5b571

Please sign in to comment.