summaryrefslogtreecommitdiff
path: root/ironic/cmd
diff options
context:
space:
mode:
authorJohn L. Villalovos <openstack.org@sodarock.com>2018-02-26 09:00:42 -0800
committerJohn L. Villalovos <openstack.org@sodarock.com>2018-02-26 09:00:42 -0800
commit843c77357363bdee77988a6a98d0058e5ab687d7 (patch)
treef861883465427d3e866d1baf6342e4c235ac6aab /ironic/cmd
parent486a6f961c9ea65590a1cf6fd9769fd8bd9f5657 (diff)
downloadironic-843c77357363bdee77988a6a98d0058e5ab687d7.tar.gz
tox.ini: flake8: Remove I202 from ignore list
Remove I202 (Additional newline in a group of imports) from the ignore list. I202 is a check from the flake8-import-order [1] package. There was a note to remove this check once the tempest plugin was removed. As the tempest plugin has been removed we can now remove the exclusion of this check. Update files which failed this test. [1] https://github.com/PyCQA/flake8-import-order Change-Id: I6018d5a90174b3d4b6b8d8e05cee1c1104ccfde9
Diffstat (limited to 'ironic/cmd')
-rw-r--r--ironic/cmd/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/cmd/__init__.py b/ironic/cmd/__init__.py
index 19feb6461..0447011e9 100644
--- a/ironic/cmd/__init__.py
+++ b/ironic/cmd/__init__.py
@@ -25,6 +25,6 @@ import eventlet
eventlet.monkey_patch(os=False)
-import oslo_i18n as i18n
+import oslo_i18n as i18n # noqa for I202 due to 'import eventlet' above
i18n.install('ironic')