Skip to content

Commit

Permalink
str -> list[str]
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Nov 7, 2024
1 parent 1f73403 commit 9a1bbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narwhals/_arrow/group_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def __iter__(self) -> Iterator[tuple[Any, ArrowDataFrame]]:
next(
(
t := self._df._from_native_frame(
table.filter(pc.equal(table[col_token], v)).drop(col_token)
table.filter(pc.equal(table[col_token], v)).drop([col_token])
)
)
.select(*self._keys)
Expand Down

0 comments on commit 9a1bbf5

Please sign in to comment.