From e78f756c701a669af5a143904fac53bc589b1997 Mon Sep 17 00:00:00 2001 From: sfc-gh-mvashishtha Date: Tue, 28 Jan 2025 16:45:36 -0800 Subject: [PATCH] Fix up Signed-off-by: sfc-gh-mvashishtha --- modin/core/storage_formats/base/query_compiler.py | 2 +- modin/core/storage_formats/pandas/query_compiler.py | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/modin/core/storage_formats/base/query_compiler.py b/modin/core/storage_formats/base/query_compiler.py index 54593f2d585..43e07be4adb 100644 --- a/modin/core/storage_formats/base/query_compiler.py +++ b/modin/core/storage_formats/base/query_compiler.py @@ -167,7 +167,7 @@ def storage_format(self) -> str: @abc.abstractmethod def engine(self) -> str: """ - The engine. + The engine for this query compiler. Returns ------- diff --git a/modin/core/storage_formats/pandas/query_compiler.py b/modin/core/storage_formats/pandas/query_compiler.py index 9404435111d..449eeecde7c 100644 --- a/modin/core/storage_formats/pandas/query_compiler.py +++ b/modin/core/storage_formats/pandas/query_compiler.py @@ -295,11 +295,7 @@ class PandasQueryCompiler(BaseQueryCompiler, QueryCompilerCaster): _modin_frame: PandasDataframe _shape_hint: Optional[str] - def __init__( - self, - modin_frame: PandasDataframe, - shape_hint: Optional[str] = None, - ): + def __init__(self, modin_frame: PandasDataframe, shape_hint: Optional[str] = None): self._modin_frame = modin_frame self._shape_hint = shape_hint