update .gitignore

This commit is contained in:
Starbeamrainbowlabs 2022-08-04 16:49:53 +01:00
parent 2ccc1be414
commit 28a3f578d5
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -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

View file

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