Revert "implemented argcomplete"

This reverts commit f5a38c4cac.
This commit is contained in:
alterNERDtive 2020-01-07 20:53:34 +01:00
parent dfeb6993b0
commit db34c8fcb8

View file

@ -1,6 +1,5 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK import argparse
import argcomplete, argparse
import math import math
import sys import sys
@ -55,7 +54,6 @@ parser_find.add_argument("name", help="the commander in question")
parser_find.add_argument("apikey", default="", nargs="?", parser_find.add_argument("apikey", default="", nargs="?",
help="the commanders EDSM API key. Can be empty for public profiles.") help="the commanders EDSM API key. Can be empty for public profiles.")
argcomplete.autocomplete(parser)
args = parser.parse_args() args = parser.parse_args()
# =========================================================================== # ===========================================================================