Skip to content

Commit

Permalink
Ensure kwargs for collate
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles committed Jul 29, 2019
1 parent 58576b4 commit 9f8f088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion more_itertools/more.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def collate(*iterables, **kwargs):
"collate is no longer part of more_itertools, use heapq.merge",
DeprecationWarning,
)
return merge(*iterables)
return merge(*iterables, **kwargs)


def consumer(func):
Expand Down

0 comments on commit 9f8f088

Please sign in to comment.