Skip to content

Commit

Permalink
Merge pull request #19 from jstriebel/patch-1
Browse files Browse the repository at this point in the history
call main when executed as python -m dunamai
  • Loading branch information
mtkennerly committed Jun 12, 2021
2 parents 4d4a111 + 2ecaa01 commit 14a9891
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dunamai/__main__.py
Expand Up @@ -246,3 +246,7 @@ def main() -> None:
except Exception as e:
print(e, file=sys.stderr)
sys.exit(1)


if __name__ == "__main__":
main()

0 comments on commit 14a9891

Please sign in to comment.