Skip to content

Commit 3e1ce7e

Browse files
committed
fixup mypy
1 parent e96f5d3 commit 3e1ce7e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

narwhals/pandas_like/translate.py

-5
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,12 @@
1111
def translate_frame(
1212
df: Any,
1313
implementation: str,
14-
*,
15-
is_eager: bool,
16-
is_lazy: bool,
1714
) -> PandasDataFrame:
1815
from narwhals.pandas_like.dataframe import PandasDataFrame
1916

2017
return PandasDataFrame(
2118
df,
2219
implementation=implementation,
23-
is_eager=is_eager,
24-
is_lazy=is_lazy,
2520
)
2621

2722

0 commit comments

Comments
 (0)