Skip to content

Commit 937e2a1

Browse files
committed
checkpoint
1 parent 7ad112a commit 937e2a1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

narwhals/_sql/typing.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
SQLExprT = TypeVar("SQLExprT", bound="SQLExprAny")
1818
SQLExprT_contra = TypeVar("SQLExprT_contra", bound="SQLExprAny", contravariant=True)
1919
SQLLazyFrameT = TypeVar("SQLLazyFrameT", bound="SQLLazyFrameAny")
20-
# TODO: @mp, should this be contravariant as to do with function arguments? think through!
2120
NativeSQLExprT = TypeVar("NativeSQLExprT", bound="NativeSQLExpr")
2221

2322
class NativeSQLExpr(NativeExpr, Protocol):
@@ -44,7 +43,7 @@ def __truediv__(self, value: Any, /) -> Self: ...
4443

4544
# def __mul__(self, value: Self) -> Self: ...
4645

47-
# def __invert__(self, value: Self) -> Self: ...
46+
#def __invert__(self) -> Self: ...
4847

4948

5049

0 commit comments

Comments
 (0)