From: Zack Cerza Date: Thu, 26 Sep 2013 17:21:39 +0000 (-0500) Subject: Add '# noqa' to suppress a linter error X-Git-Tag: 1.1.0~1850^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=962a9ae2bbff39e62e832dc5936eb84ca088b385;p=teuthology.git Add '# noqa' to suppress a linter error Fixing this would require some more significant changes... and tempt me with rewriting every module in the directory. (cherry picked from commit 3fc39a59fd415a4e4e6f2a0354fe900477167e51) --- diff --git a/teuthology/locker/locker.py b/teuthology/locker/locker.py index 7de222d11..b017032b2 100755 --- a/teuthology/locker/locker.py +++ b/teuthology/locker/locker.py @@ -8,7 +8,7 @@ abspath = os.path.dirname(__file__) if abspath not in sys.path: sys.path.append(abspath) -from api import Lock, MachineLock +from api import Lock, MachineLock # noqa urls = ( '/lock', 'Lock',