Skip to content

Commit

Permalink
fix missing docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
noloerino committed Sep 12, 2024
1 parent 058433a commit a287f5f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modin/core/storage_formats/base/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,7 @@ def combine_first(self, other, **kwargs): # noqa: PR02
def eq(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.DataFrame.eq)(self, other=other, **kwargs)

@doc_utils.add_refer_to("Series.eq")
def series_eq(self, other, **kwargs):
return BinaryDefault.register(pandas.Series.eq)(
self,
Expand Down Expand Up @@ -694,6 +695,7 @@ def divmod(self, other, **kwargs):
def ge(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.DataFrame.ge)(self, other=other, **kwargs)

@doc_utils.add_refer_to("Series.ge")
def series_ge(self, other, **kwargs):
return BinaryDefault.register(pandas.Series.ge)(
self,
Expand All @@ -709,6 +711,7 @@ def series_ge(self, other, **kwargs):
def gt(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.DataFrame.gt)(self, other=other, **kwargs)

@doc_utils.add_refer_to("Series.gt")
def series_gt(self, other, **kwargs):
return BinaryDefault.register(pandas.Series.gt)(
self,
Expand All @@ -724,6 +727,7 @@ def series_gt(self, other, **kwargs):
def le(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.DataFrame.le)(self, other=other, **kwargs)

@doc_utils.add_refer_to("Series.le")
def series_le(self, other, **kwargs):
return BinaryDefault.register(pandas.Series.le)(
self,
Expand All @@ -739,6 +743,7 @@ def series_le(self, other, **kwargs):
def lt(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.DataFrame.lt)(self, other=other, **kwargs)

@doc_utils.add_refer_to("Series.lt")
def series_lt(self, other, **kwargs):
return BinaryDefault.register(pandas.Series.lt)(
self,
Expand Down Expand Up @@ -863,6 +868,7 @@ def dot(self, other, **kwargs): # noqa: PR02
def ne(self, other, **kwargs): # noqa: PR02
return BinaryDefault.register(pandas.DataFrame.ne)(self, other=other, **kwargs)

@doc_utils.add_refer_to("Series.ne")
def series_ne(self, other, **kwargs):
return BinaryDefault.register(pandas.Series.ne)(
self,
Expand Down

0 comments on commit a287f5f

Please sign in to comment.