Skip to content

Commit 9837b5a

Browse files
committed
Clean up unused imports for flake8
Another flake8 warning we can gate on now. Signed-off-by: Paul Belanger <pabelanger@redhat.com>
1 parent da7b753 commit 9837b5a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

action_plugins/command_parser.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@
1414
from ansible import constants as C
1515
from ansible.plugins.action import ActionBase
1616
from ansible.module_utils.common._collections_compat import Mapping
17-
from ansible.module_utils.six import iteritems, iterkeys, string_types
17+
from ansible.module_utils.six import iteritems, string_types
1818
from ansible.module_utils._text import to_text
1919
from ansible.errors import AnsibleError
2020

21-
from ansible.plugins.filter.core import combine
22-
2321
try:
2422
from ansible.module_utils.network.common.utils import to_list
2523
except ImportError:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ commands = {posargs}
1818
[flake8]
1919
# TODO(pabelanger): Follow sane flake8 rules for galaxy and sync across all of
2020
# ansible-network.
21-
ignore = E125,E129,E402,F401
21+
ignore = E125,E129,E402
2222
max-line-length = 160
2323
show-source = True
2424
exclude = .venv,.tox,dist,doc,build,*.egg

0 commit comments

Comments
 (0)