We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7162a4 commit 9451786Copy full SHA for 9451786
narwhals/pandas_like/expr.py
@@ -6,7 +6,7 @@
6
7
from narwhals.pandas_like.series import Series
8
from narwhals.pandas_like.utils import register_expression_call
9
-from narwhals.spec import Expr as ExprT
+from narwhals.spec import Expr as ExprProtocol
10
from narwhals.spec import ExprStringNamespace as ExprStringNamespaceProtocol
11
12
if TYPE_CHECKING:
@@ -17,7 +17,7 @@
17
from narwhals.pandas_like.namespace import Namespace
18
19
20
-class Expr(ExprT):
+class Expr(ExprProtocol):
21
def __init__( # noqa: PLR0913
22
self,
23
call: Callable[[DataFrame | LazyFrame], list[Series]],
0 commit comments