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 bf5bede commit 40e1737Copy full SHA for 40e1737
narwhals/_sql/typing.py
@@ -12,3 +12,7 @@
12
SQLExprT = TypeVar("SQLExprT", bound="SQLExprAny")
13
SQLExprT_contra = TypeVar("SQLExprT_contra", bound="SQLExprAny", contravariant=True)
14
SQLLazyFrameT = TypeVar("SQLLazyFrameT", bound="SQLLazyFrameAny")
15
+
16
17
+# it needs to inherit from SQLExpr, but getting errors if passing SQLExprT
18
+class NativeSQLExpr(Any): ...
0 commit comments