Skip to content

Commit

Permalink
misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Jan 1, 2024
1 parent fcf3ba4 commit 01b54cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion functionalpy/_sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
Callable,
Iterable,
Iterator,
Mapping,
Sequence,
)
from copy import deepcopy
Expand Down
2 changes: 1 addition & 1 deletion functionalpy/benchmark/query_1/iterators_q1.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def main_iterator(data: Sequence[Item]) -> Sequence[CategorySummary]:

summaries = [
summarise_category(group, rows=values)
for group, values in mapping.items()
for group, values in mapping.to_iter()
]

return summaries
Expand Down

0 comments on commit 01b54cc

Please sign in to comment.