Skip to content

Commit c06e2d9

Browse files
committed
bug fixes
1 parent 6a2bf19 commit c06e2d9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

modin/core/storage_formats/pandas/query_compiler.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444

4545
from modin.core.storage_formats.base.query_compiler import BaseQueryCompiler
4646
from modin.config import ExperimentalGroupbyImpl
47+
from modin.config import Engine
4748
from modin.error_message import ErrorMessage
4849
from modin.utils import (
4950
try_cast_to_pandas,

modin/pandas/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def sum(self, *args, **kwargs):
183183
def mean(self, *args, **kwargs):
184184
return self._dataframe.__constructor__(
185185
query_compiler=self._query_compiler.rolling_mean(
186-
self.axis, rolling_args=self.rolling_kwargs, *args, **kwargs
186+
self.axis, self.rolling_kwargs, *args, **kwargs
187187
)
188188
)
189189

0 commit comments

Comments
 (0)