Skip to content

Commit c26d7ff

Browse files
committed
chore(typing): ignore spark issues
Revisit in #2044
1 parent 3da91c4 commit c26d7ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

narwhals/_spark_like/selectors.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
from narwhals.utils import _FullContext
1818

1919

20-
class SparkLikeSelectorNamespace(LazySelectorNamespace["SparkLikeLazyFrame", "Column"]):
20+
class SparkLikeSelectorNamespace(LazySelectorNamespace["SparkLikeLazyFrame", "Column"]): # type: ignore[type-var] (#2044)
2121
def _iter_columns(self, df: SparkLikeLazyFrame) -> Iterator[Column]:
2222
for col in df.columns:
2323
yield df._F.col(col)
2424

2525
def _selector(
2626
self,
27-
call: EvalSeries[SparkLikeLazyFrame, Column],
27+
call: EvalSeries[SparkLikeLazyFrame, Column], # type: ignore[type-var] (#2044)
2828
evaluate_output_names: EvalNames[SparkLikeLazyFrame],
2929
/,
3030
) -> SparkLikeSelector:
@@ -44,7 +44,7 @@ def __init__(self: Self, context: _FullContext, /) -> None:
4444
self._implementation = context._implementation
4545

4646

47-
class SparkLikeSelector(CompliantSelector["SparkLikeLazyFrame", "Column"], SparkLikeExpr): # type: ignore[misc]
47+
class SparkLikeSelector(CompliantSelector["SparkLikeLazyFrame", "Column"], SparkLikeExpr): # type: ignore[type-var, misc] (#2044)
4848
def _to_expr(self: Self) -> SparkLikeExpr:
4949
return SparkLikeExpr(
5050
self._call,

0 commit comments

Comments
 (0)