add pylint ignore in django returner

This commit is contained in:
ch3ll 2020-03-09 14:31:07 -04:00
parent 9adc2214c3
commit 6a213a429a
No known key found for this signature in database
GPG key ID: 1124C6796EBDBD8D

View file

@ -39,7 +39,7 @@ log = logging.getLogger(__name__)
HAS_DJANGO = False
try:
from django import dispatch
from django import dispatch # pylint: disable=E0611
HAS_DJANGO = True
except ImportError:
HAS_DJANGO = False