From fec7b58fa9a837f69ef78fd7b7aa96e8562dd509 Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Tue, 7 May 2024 13:54:50 +0200 Subject: [PATCH] fix Signed-off-by: Anatoly Myachev --- modin/core/io/column_stores/parquet_dispatcher.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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