Fix flake error

This commit is contained in:
Andrew Godwin 2016-04-05 17:30:47 -07:00
parent 352407e54b
commit 11218089bd

View File

@ -10,7 +10,7 @@ class ChannelsConfig(AppConfig):
def ready(self):
# Check you're not running 1.10 or above
try:
from django import channels
from django import channels # NOQA isort:skip
except ImportError:
pass
else: