diff options
| author | Dolph Mathews <dolph.mathews@gmail.com> | 2013-05-28 09:22:03 -0500 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-06-03 13:05:12 +0000 |
| commit | 6f27af4a0cdbde42b1566ecabaf667c26b089dc3 (patch) | |
| tree | b5113ad5410764c0a8279d84ad89975192973954 /keystoneclient/common | |
| parent | abcf9db6251a2e1349ee199113cc80a136ff2f79 (diff) | |
| download | python-keystoneclient-6f27af4a0cdbde42b1566ecabaf667c26b089dc3.tar.gz | |
Fix unused imports(flake8 F401, F999)
- F401: imported but unused
- F999: syntax error in doctest
Fixing a couple of the F401's simply required fixing the doctests syntax
where the imports were actually in use.
Change-Id: If78abbb143daf8d005a71c5ab52836df29c5e0cd
Diffstat (limited to 'keystoneclient/common')
| -rw-r--r-- | keystoneclient/common/cms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/common/cms.py b/keystoneclient/common/cms.py index f13264d..48b991a 100644 --- a/keystoneclient/common/cms.py +++ b/keystoneclient/common/cms.py @@ -21,7 +21,7 @@ def _ensure_subprocess(): else: import subprocess except ImportError: - import subprocess + import subprocess # noqa def cms_verify(formatted, signing_cert_file_name, ca_file_name): |
