Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzmitry Dzemidzenka committed Feb 18, 2019
1 parent 023ce0c commit 6da27ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -4,7 +4,7 @@ export PYTHONPATH=.
.PHONY: test

test:
flake8 avatar --ignore=E124,E501,E127,E128,E722
flake8 slack_utils --ignore=E124,E501,E127,E128,E722
coverage run --source=slack_utils `which django-admin.py` test tests
coverage report

Expand Down
2 changes: 1 addition & 1 deletion slack_utils/signals.py
@@ -1,3 +1,3 @@
import django.dispatch

event_received = django.dispatch.Signal(providing_args=["event_type", "event_data"])
event_received = django.dispatch.Signal(providing_args=["event_type", "event_data"])

0 comments on commit 6da27ae

Please sign in to comment.