Changed tarball id CLI option to string

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2019-07-16 13:29:49 +02:00
parent 0280015a50
commit a8f58a6fc7
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ def _build_visualise(parser: argparse.ArgumentParser) -> None:
def _build_measure(parser: argparse.ArgumentParser) -> None:
parser.add_argument("tarball_id", type=int, help="id of the used tarball")
parser.add_argument("tarball_id", type=str, help="id of the used tarball. number for training tarball or 'test'")
if __name__ == "__main__":