diff --git a/modin/core/io/column_stores/parquet_dispatcher.py b/modin/core/io/column_stores/parquet_dispatcher.py index f78c6dbd5ec..adc2b1c5511 100644 --- a/modin/core/io/column_stores/parquet_dispatcher.py +++ b/modin/core/io/column_stores/parquet_dispatcher.py @@ -18,7 +18,6 @@ import json import os import re -from functools import cached_property from typing import TYPE_CHECKING import fsspec @@ -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 diff --git a/scripts/doc_checker.py b/scripts/doc_checker.py index 7c877b643af..26ba809cb3d 100644 --- a/scripts/doc_checker.py +++ b/scripts/doc_checker.py @@ -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