From 6fb90218b157430bbcf5860e4b91613e95b31b51 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Tue, 18 Feb 2014 13:57:56 -0800 Subject: [PATCH] Remove unnecessary usage of noqa openstack.common.gettextutils._ is already listed under import_exceptions so it doesn't need a noqa. Patch c178e567cb48d3bc67dcf06bcbb4c6a97df9f434 added the use of six.moves.mox and used a noqa to make it pass hacking, instead of adding a noqa to every line that uses this, just add six.moves.mox to import_exceptions Change-Id: I912048c1222c22ee13a4dc2dc68dafe350907220 --- tests/unit/test_loopingcall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_loopingcall.py b/tests/unit/test_loopingcall.py index 41cdc7d..5030974 100644 --- a/tests/unit/test_loopingcall.py +++ b/tests/unit/test_loopingcall.py @@ -15,7 +15,7 @@ import datetime from eventlet import greenthread -from six.moves import mox # noqa +from six.moves import mox from openstack.common import loopingcall from openstack.common import test