Revert allow_abbrev=False in helper scripts

This commit is contained in:
Anthony Sottile
2019-06-25 14:50:07 -07:00
parent 019455298b
commit bd647fdd8b
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import pathlib
HERE = pathlib.Path(__file__).parent
TEST_CONTENT = (HERE / "template_test.py").read_bytes()
parser = argparse.ArgumentParser(allow_abbrev=False)
parser = argparse.ArgumentParser()
parser.add_argument("numbers", nargs="*", type=int)