Commit 441b7ce 1 parent 2c08b7c commit 441b7ce Copy full SHA for 441b7ce
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ def agg(
52
52
) -> LazyFrame :
53
53
from narwhals .pandas_like .dataframe import LazyFrame
54
54
55
- df = self ._df .dataframe # type: ignore[attr-defined]
55
+ df = self ._df .dataframe
56
56
exprs = parse_into_exprs (
57
57
get_namespace (self ._df ),
58
58
* aggs ,
@@ -63,7 +63,7 @@ def agg(
63
63
sort = False ,
64
64
as_index = False ,
65
65
)
66
- implementation : str = self ._df ._implementation # type: ignore[attr-defined]
66
+ implementation : str = self ._df ._implementation
67
67
output_names : list [str ] = self ._keys
68
68
for expr in exprs :
69
69
expr_output_names = expr ._output_names
@@ -109,5 +109,5 @@ def agg(
109
109
return LazyFrame (
110
110
results_keys ,
111
111
api_version = self .api_version ,
112
- implementation = self ._df ._implementation , # type: ignore[attr-defined]
112
+ implementation = self ._df ._implementation ,
113
113
)
You can’t perform that action at this time.
0 commit comments