Fix pep8 issues

It doesn't look like the integration test job picked those up.

Change-Id: I8041e0c0730f5d65c014f52992b0ed086322a4b3
This commit is contained in:
David Moreau Simard 2019-01-25 12:35:33 -05:00
parent 72ac0dcf99
commit e42c10e7b4
No known key found for this signature in database
GPG Key ID: CBEB466764A9E621
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@
import logging
import os
import sys
import threading
from django.core.handlers.wsgi import WSGIHandler
@ -36,7 +35,7 @@ class AraOfflineClient(AraHttpClient):
# Validate that ara-server is available before letting Django attempt to
# import it
try:
import ara.server
import ara.server # noqa
except ImportError:
raise ImportError("AraOfflineClient requires ara-server to be installed.")