Skip to content

Commit

Permalink
fix the example in the izip_dicts doc-string
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat authored and Suor committed Sep 6, 2021
1 parent 836ae93 commit be16b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion funcy/colls.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def zip_values(*dicts):
yield tuple(d[key] for d in dicts)

def zip_dicts(*dicts):
"""Yields tuples like (key, val1, val2, ...)
"""Yields tuples like (key, (val1, val2, ...))
for each common key in all given dicts."""
if len(dicts) < 1:
raise TypeError('zip_dicts expects at least one argument')
Expand Down

0 comments on commit be16b84

Please sign in to comment.