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__":