Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed May 14, 2024
1 parent aa54c78 commit 2b659ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions modin/core/dataframe/base/partitioning/axis_partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def apply(
pass

# Child classes must have these in order to correctly subclass.
# TODO: Looks like can be deleted
instance_type = None
partition_type = None
_PARTITIONS_METADATA_LEN = 0
Expand Down
1 change: 1 addition & 0 deletions modin/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ def _documentable_obj(obj: object) -> bool:
"""Check if `obj` docstring could be patched."""
return bool(
callable(obj)
and not inspect.isclass(obj)
or (isinstance(obj, property) and obj.fget)
or (isinstance(obj, functools.cached_property))
or (isinstance(obj, (staticmethod, classmethod)) and obj.__func__)
Expand Down

0 comments on commit 2b659ff

Please sign in to comment.