From e42c10e7b4b4fa980caed30204af6265905bbbb0 Mon Sep 17 00:00:00 2001 From: David Moreau Simard Date: Fri, 25 Jan 2019 12:35:33 -0500 Subject: [PATCH] Fix pep8 issues It doesn't look like the integration test job picked those up. Change-Id: I8041e0c0730f5d65c014f52992b0ed086322a4b3 --- ara/clients/offline.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ara/clients/offline.py b/ara/clients/offline.py index 072f06bf..3c0d92df 100644 --- a/ara/clients/offline.py +++ b/ara/clients/offline.py @@ -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.")