From 28a3f578d540f138a67fca43cbdc26eb4bbbc10c Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 4 Aug 2022 16:49:53 +0100 Subject: [PATCH] update .gitignore --- .gitignore | 1 + aimodel/src/index.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e0bbf7e..ebbac55 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +output # Created by https://www.toptal.com/developers/gitignore/api/python,node,git,visualstudiocode # Edit at https://www.toptal.com/developers/gitignore?templates=python,node,git,visualstudiocode diff --git a/aimodel/src/index.py b/aimodel/src/index.py index 0298898..8c3d8cb 100755 --- a/aimodel/src/index.py +++ b/aimodel/src/index.py @@ -16,7 +16,7 @@ def main(): return imported_module = importlib.import_module(f"subcommands.{subcommand}") - imported_module.run(args) + imported_module.run(args) if __name__ == "__main__":