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 8, 2024
1 parent 24e94f7 commit bb43cd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions modin/core/io/column_stores/parquet_dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import json
import os
import re
from functools import cached_property
from typing import TYPE_CHECKING

import fsspec
Expand Down Expand Up @@ -92,12 +91,14 @@ def engine(self):
"""Return string representing what engine is being used."""
raise NotImplementedError

@cached_property
# TODO: make this cached_property after docstring inheritance is fixed.
@property
def files(self):
"""Return the list of formatted file paths of the dataset."""
raise NotImplementedError

@cached_property
# TODO: make this cached_property after docstring inheritance is fixed.
@property
def row_groups_per_file(self):
"""Return a list with the number of row groups per file."""
raise NotImplementedError
Expand Down
1 change: 0 additions & 1 deletion scripts/doc_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,6 @@ def monkeypatching():
"""Monkeypatch not installed modules and decorators which change __doc__ attribute."""
from unittest.mock import Mock

import pandas.util
import ray

import modin.utils
Expand Down

0 comments on commit bb43cd5

Please sign in to comment.