diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2020-05-14 04:48:35 +0200 |
---|---|---|
committer | Toshio Kuratomi <a.badger@gmail.com> | 2020-05-14 18:14:37 +0200 |
commit | efff35a7cd6b6f560ba1576e813b03ac5bd2358e (patch) | |
tree | 96c61e77ad93d92331e3782e62a4eb437bba56ac /hacking | |
parent | Turn pathlib paths into strs (diff) | |
download | ansible-efff35a7cd6b6f560ba1576e813b03ac5bd2358e.tar.xz ansible-efff35a7cd6b6f560ba1576e813b03ac5bd2358e.zip |
Remove unused imports in the porting_guide command plugin
Diffstat (limited to 'hacking')
-rw-r--r-- | hacking/build_library/build_ansible/command_plugins/porting_guide.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hacking/build_library/build_ansible/command_plugins/porting_guide.py b/hacking/build_library/build_ansible/command_plugins/porting_guide.py index 5cfd7f9f0e..40097a3f6c 100644 --- a/hacking/build_library/build_ansible/command_plugins/porting_guide.py +++ b/hacking/build_library/build_ansible/command_plugins/porting_guide.py @@ -7,10 +7,6 @@ from __future__ import (absolute_import, division, print_function) __metaclass__ = type -import argparse -import os.path -import sys - from jinja2 import Environment, DictLoader # Pylint doesn't understand Python3 namespace modules. |