Skip to content

Commit 898a7d7

Browse files
committed
wip
1 parent 88ed47b commit 898a7d7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

narwhals/pandas_like/expr.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ def __repr__(self) -> str:
5050
def from_column_names(
5151
cls: type[Self], *column_names: str, implementation: str
5252
) -> Self:
53-
from narwhals.pandas_like.series import Series
54-
5553
return cls(
5654
lambda df: [
5755
Series(
@@ -237,8 +235,6 @@ def ends_with(self, suffix: str) -> Expr:
237235
)
238236

239237
def strip_chars(self, characters: str = " ") -> Expr:
240-
from narwhals.pandas_like.series import Series
241-
242238
return Expr(
243239
lambda df: [
244240
Series(

0 commit comments

Comments
 (0)