Skip to content

Commit

Permalink
Make flake8 happier!
Browse files Browse the repository at this point in the history
  • Loading branch information
gleb-akhmerov committed Oct 15, 2022
1 parent 5ef7562 commit bda68db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,9 @@ def _group_events(events):
# again, which would be problematic if the remainder is a
# generator function (as in Python 3.10 itertools recipes), since
# that creates recursion. `itertools.chain` solves this problem.
numbers, events = mi.before_and_after(lambda e: isinstance(e, int), events)
numbers, events = mi.before_and_after(
lambda e: isinstance(e, int), events
)

yield (operation, numbers)

Expand Down

0 comments on commit bda68db

Please sign in to comment.