Merge pull request #56333 from Ch3LL/lint_fix

add pylint ignore in django returner
This commit is contained in:
Daniel Wozniak 2020-03-09 13:42:41 -07:00 committed by GitHub
commit de5184a206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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