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)(

Check warning on line 654 in modin/core/storage_formats/base/query_compiler.py

View check run for this annotation

Codecov / codecov/patch

modin/core/storage_formats/base/query_compiler.py#L654

Added line #L654 was not covered by tests
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)(

Check warning on line 706 in modin/core/storage_formats/base/query_compiler.py

View check run for this annotation

Codecov / codecov/patch

modin/core/storage_formats/base/query_compiler.py#L706

Added line #L706 was not covered by tests
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)(

Check warning on line 724 in modin/core/storage_formats/base/query_compiler.py

View check run for this annotation

Codecov / codecov/patch

modin/core/storage_formats/base/query_compiler.py#L724

Added line #L724 was not covered by tests
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)(

Check warning on line 744 in modin/core/storage_formats/base/query_compiler.py

View check run for this annotation

Codecov / codecov/patch

modin/core/storage_formats/base/query_compiler.py#L744

Added line #L744 was not covered by tests
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)(

Check warning on line 762 in modin/core/storage_formats/base/query_compiler.py

View check run for this annotation

Codecov / codecov/patch

modin/core/storage_formats/base/query_compiler.py#L762

Added line #L762 was not covered by tests
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)(

Check warning on line 889 in modin/core/storage_formats/base/query_compiler.py

View check run for this annotation

Codecov / codecov/patch

modin/core/storage_formats/base/query_compiler.py#L889

Added line #L889 was not covered by tests
self,
other=other,
Expand Down

0 comments on commit ae5b571

Please sign in to comment.