Skip to content

Commit b4f6a51

Browse files

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

narwhals/_spark_like/selectors.py

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

1919

20-
class SparkLikeSelectorNamespace(LazySelectorNamespace["SparkLikeLazyFrame", "Column"]): # type: ignore[type-var] (#2044)
20+
# NOTE: See issue regarding ignores (#2044)
21+
class SparkLikeSelectorNamespace(LazySelectorNamespace["SparkLikeLazyFrame", "Column"]): # type: ignore[type-var]
2122
def _iter_columns(self, df: SparkLikeLazyFrame) -> Iterator[Column]:
2223
for col in df.columns:
2324
yield df._F.col(col)
2425

2526
def _selector(
2627
self,
27-
call: EvalSeries[SparkLikeLazyFrame, Column], # type: ignore[type-var] (#2044)
28+
call: EvalSeries[SparkLikeLazyFrame, Column], # type: ignore[type-var]
2829
evaluate_output_names: EvalNames[SparkLikeLazyFrame],
2930
/,
3031
) -> SparkLikeSelector:
@@ -44,7 +45,7 @@ def __init__(self: Self, context: _FullContext, /) -> None:
4445
self._implementation = context._implementation
4546

4647

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

0 commit comments

Comments
 (0)