Skip to content

Commit

Permalink
WIP: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rossant committed Jun 8, 2020
1 parent 3728c3c commit c0b72a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phy/apps/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,7 @@ def on_close(sender):
logging.getLogger('phy').addHandler(handler)

# Save the memcache when closing the GUI.
@connect(sender=gui)
@connect(sender=gui) # noqa
def on_close(sender): # noqa

# Gather all GUI state attributes from views that are local and thus need
Expand Down
2 changes: 1 addition & 1 deletion phy/cluster/views/tests/test_cluscatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def on_select_more(sender, cluster_ids):
def on_request_select(sender, cluster_ids): # noqa
_clicked.append(cluster_ids)

@connect(sender=v)
@connect(sender=v) # noqa
def on_select_more(sender, cluster_ids): # noqa
_clicked.append(cluster_ids)

Expand Down

0 comments on commit c0b72a4

Please sign in to comment.