diff options
author | Joel Diaz <jdiaz@redhat.com> | 2017-03-01 10:37:52 -0500 |
---|---|---|
committer | Joel Diaz <jdiaz@redhat.com> | 2017-03-21 17:33:27 -0400 |
commit | 2b4a4251a2e6470ca1580a37399182c68e5c2566 (patch) | |
tree | 274399ace83a428f65ee263fdc010d809e754f92 /roles/lib_openshift | |
parent | a11970d30c88d188392ec217c055b6b8169b3769 (diff) | |
download | openshift-2b4a4251a2e6470ca1580a37399182c68e5c2566.tar.gz openshift-2b4a4251a2e6470ca1580a37399182c68e5c2566.tar.bz2 openshift-2b4a4251a2e6470ca1580a37399182c68e5c2566.tar.xz openshift-2b4a4251a2e6470ca1580a37399182c68e5c2566.zip |
fix up things flagged by flake8
Diffstat (limited to 'roles/lib_openshift')
-rwxr-xr-x | roles/lib_openshift/src/test/unit/test_oc_user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/lib_openshift/src/test/unit/test_oc_user.py b/roles/lib_openshift/src/test/unit/test_oc_user.py index 933e96ae2..f7a17cc2c 100755 --- a/roles/lib_openshift/src/test/unit/test_oc_user.py +++ b/roles/lib_openshift/src/test/unit/test_oc_user.py @@ -24,7 +24,7 @@ import mock # place class in our python path module_path = os.path.join('/'.join(os.path.realpath(__file__).split('/')[:-4]), 'library') # noqa: E501 sys.path.insert(0, module_path) -from oc_user import OCUser, locate_oc_binary # noqa: E402 +from oc_user import OCUser # noqa: E402 class OCUserTest(unittest.TestCase): |