Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemanley committed Oct 28, 2024
1 parent 016196a commit 2124a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -10446,7 +10446,7 @@ def rows_by_key(
data_cols = [k for k in self.schema if k not in key]
values = self.select(data_cols)

zipped = zip(keys, values.iter_rows(named=named)) # type: ignore[call-overload]
zipped = zip(keys, values.iter_rows(named=named)) # type: ignore[call-overload]

# if unique, we expect to write just one entry per key; otherwise, we're
# returning a list of rows for each key, so append into a defaultdict.
Expand Down

0 comments on commit 2124a28

Please sign in to comment.