Skip to content

Commit

Permalink
Fix up
Browse files Browse the repository at this point in the history
Signed-off-by: sfc-gh-mvashishtha <[email protected]>
  • Loading branch information
sfc-gh-mvashishtha committed Jan 29, 2025
1 parent 4bfc5c8 commit e78f756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modin/core/storage_formats/base/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def storage_format(self) -> str:
@abc.abstractmethod
def engine(self) -> str:
"""
The engine.
The engine for this query compiler.
Returns
-------
Expand Down
6 changes: 1 addition & 5 deletions modin/core/storage_formats/pandas/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e78f756

Please sign in to comment.