diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2020-03-30 10:37:40 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-08 09:27:31 -0400 |
commit | b0a3b9f07c49ccc58378e41618646e626679582f (patch) | |
tree | 1f6ba8ffbe02361cbd1af3e05aeb07de4bc52d39 | |
parent | 8b0d7d97e2762004c0bfef2b574b59c063e26877 (diff) | |
download | sos-b0a3b9f07c49ccc58378e41618646e626679582f.tar.gz |
[options] Remove extraneous import
Removes an extraneous import identified by LGTM
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/options.py b/sos/options.py index 4cadb9a0..61e61369 100644 --- a/sos/options.py +++ b/sos/options.py @@ -6,7 +6,7 @@ # # See the LICENSE file in the source distribution for further information. -from argparse import ArgumentParser, Action +from argparse import Action from configparser import ConfigParser, ParsingError, Error |