Skip to content

Commit 9451786

Browse files
committed
it gets better
1 parent d7162a4 commit 9451786

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

narwhals/pandas_like/expr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from narwhals.pandas_like.series import Series
88
from narwhals.pandas_like.utils import register_expression_call
9-
from narwhals.spec import Expr as ExprT
9+
from narwhals.spec import Expr as ExprProtocol
1010
from narwhals.spec import ExprStringNamespace as ExprStringNamespaceProtocol
1111

1212
if TYPE_CHECKING:
@@ -17,7 +17,7 @@
1717
from narwhals.pandas_like.namespace import Namespace
1818

1919

20-
class Expr(ExprT):
20+
class Expr(ExprProtocol):
2121
def __init__( # noqa: PLR0913
2222
self,
2323
call: Callable[[DataFrame | LazyFrame], list[Series]],

0 commit comments

Comments
 (0)