From ae5b571e4d43c9ef13effa249871deac36aabe02 Mon Sep 17 00:00:00 2001 From: Jonathan Shi Date: Thu, 12 Sep 2024 14:36:06 -0700 Subject: [PATCH] suppress PR02 --- modin/core/storage_formats/base/query_compiler.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modin/core/storage_formats/base/query_compiler.py b/modin/core/storage_formats/base/query_compiler.py index 925d8bec866..fdd387a59c4 100644 --- a/modin/core/storage_formats/base/query_compiler.py +++ b/modin/core/storage_formats/base/query_compiler.py @@ -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, @@ -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, @@ -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, @@ -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, @@ -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, @@ -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,