From db34c8fcb8ddcc3d5a3328ed7e4f1ca481aa297c Mon Sep 17 00:00:00 2001 From: alterNERDtive Date: Tue, 7 Jan 2020 20:53:34 +0100 Subject: [PATCH] Revert "implemented argcomplete" This reverts commit f5a38c4caca50b01ece1f1083f883b0ea2de4be2. --- explorationtools.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/explorationtools.py b/explorationtools.py index 6aa3456..d8fbb86 100755 --- a/explorationtools.py +++ b/explorationtools.py @@ -1,6 +1,5 @@ #!/usr/bin/env python3 -# PYTHON_ARGCOMPLETE_OK -import argcomplete, argparse +import argparse import math import sys @@ -55,7 +54,6 @@ parser_find.add_argument("name", help="the commander in question") parser_find.add_argument("apikey", default="", nargs="?", help="the commander’s EDSM API key. Can be empty for public profiles.") -argcomplete.autocomplete(parser) args = parser.parse_args() # ===========================================================================