Commit db08306b authored by Benjamin Peterson's avatar Benjamin Peterson

fix incorrect merge

parent 9d57ccb6
......@@ -705,4 +705,4 @@ which incur interpreter overhead.
"List unique elements, preserving order. Remember only the element just seen."
# unique_justseen('AAAABBBCCDAABBB') --> A B C D A B
# unique_justseen('ABBCcAD', str.lower) --> A B C A D
return map(next, imap(itemgetter(1), groupby(iterable, key)))
return map(next, map(itemgetter(1), groupby(iterable, key)))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment