Skip to content

Commit

Permalink
⚫ Fade to black.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Nov 21, 2020
1 parent 2d58d54 commit e9f23a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: stable
rev: 20.8b1
hooks:
- id: black

Expand Down
5 changes: 4 additions & 1 deletion jaraco/itertools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,10 @@ def partition_dict(items, key):
"""

def unmatched(pair):
(test_key, item,) = pair
(
test_key,
item,
) = pair
return test_key != key

items_iter = iter(items.items())
Expand Down

0 comments on commit e9f23a4

Please sign in to comment.