Skip to content

Commit 1397112

Browse files
committed
remove extranious change; try to fix cyclic import
1 parent f9a4bda commit 1397112

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modin/core/dataframe/algebra/default2pandas/default.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ def args_cast(self, *args, **kwargs):
202202
203203
Cast all Modin objects that function arguments contain to its pandas representation.
204204
"""
205-
args1 = try_cast_to_pandas(args)
206-
kwargs1 = try_cast_to_pandas(kwargs)
207-
return wrapper(self, *args1, **kwargs1)
205+
args = try_cast_to_pandas(args)
206+
kwargs = try_cast_to_pandas(kwargs)
207+
return wrapper(self, *args, **kwargs)
208208

209209
return args_cast
210210

modin/tests/pandas/native_df_interoperability/test_compiler_caster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
import pandas
1515
import pytest
16-
from modin.core.storage_formats.base.query_compiler import QCCoercionCost
1716
from modin.core.storage_formats.pandas.native_query_compiler import NativeQueryCompiler
17+
from modin.core.storage_formats.base.query_compiler import QCCoercionCost
1818

1919

2020
class CloudQC(NativeQueryCompiler):

0 commit comments

Comments
 (0)