From 32286e0cbc5bf98d5f5902b33f888365adb59f16 Mon Sep 17 00:00:00 2001 From: "Chaozhe.Chen" Date: Tue, 9 Feb 2016 21:11:41 +0800 Subject: [PATCH] Use "# noqa" instead of "#flake8: noqa" "# flake8: noqa" option disables all checks for the whole file. To disable one line we should use "# noqa". Change-Id: Iea2fbf239c7f11bc0cc8788bcc4b8abc862339be Closes-bug: #1540254 --- troveclient/exceptions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/troveclient/exceptions.py b/troveclient/exceptions.py index 536a8d4a..d232a697 100644 --- a/troveclient/exceptions.py +++ b/troveclient/exceptions.py @@ -19,9 +19,8 @@ Exception definitions """ -# flake8: noqa # alias exceptions from apiclient for users of this module -from troveclient.openstack.common.apiclient.exceptions import * +from troveclient.openstack.common.apiclient.exceptions import * # noqa class NoTokenLookupException(Exception):