Skip to content

Commit

Permalink
Another pep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiberiu Ichim committed Feb 11, 2015
1 parent 09f1e91 commit 0efef98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kotti/tests/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ def test_workflow_callback_event(self):
from kotti.workflow import WorkflowTransition

events = []
my_listener = lambda event: events.append(event)
listeners[WorkflowTransition].append(my_listener)
listeners[WorkflowTransition].append(lambda event: events.append(event))

context = Dummy()
info = Dummy()
Expand Down

0 comments on commit 0efef98

Please sign in to comment.