diff options
| author | Akihiro Motoki <amotoki@gmail.com> | 2017-08-22 21:38:07 +0000 |
|---|---|---|
| committer | Akihiro Motoki <amotoki@gmail.com> | 2017-08-22 21:38:07 +0000 |
| commit | ff85c627078ec8d4770ba875ad35f5e63facb173 (patch) | |
| tree | e302ea3093605d6f73da8cb9791c4c78437f295f /openstackclient/tests/functional/compute/v2 | |
| parent | 5cc4d5b5307c44b71f00d44985b98e54366f8397 (diff) | |
| download | python-openstackclient-ff85c627078ec8d4770ba875ad35f5e63facb173.tar.gz | |
flake8-import-order: Ensure to place project imports last
To ensure project imports are placed after third party import,
we need to specify application-import-names.
Previously flake8-import-check checked only standard imports or not.
Change-Id: Iad7afa456cec7cf5b44955f1ea03c593a4c0e426
Diffstat (limited to 'openstackclient/tests/functional/compute/v2')
| -rw-r--r-- | openstackclient/tests/functional/compute/v2/test_keypair.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/compute/v2/test_keypair.py b/openstackclient/tests/functional/compute/v2/test_keypair.py index 1e1a03d6..9a88e66f 100644 --- a/openstackclient/tests/functional/compute/v2/test_keypair.py +++ b/openstackclient/tests/functional/compute/v2/test_keypair.py @@ -13,11 +13,11 @@ import json import tempfile -from openstackclient.tests.functional import base - from tempest.lib.common.utils import data_utils from tempest.lib import exceptions +from openstackclient.tests.functional import base + class KeypairBase(base.TestCase): """Methods for functional tests.""" |
