Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

Commit

Permalink
Put main as described by python creator
Browse files Browse the repository at this point in the history
  • Loading branch information
constrict0r committed Nov 4, 2018
1 parent 32738c5 commit 9f504e0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions amanita/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# -*- coding: utf-8 -*-

"""Main amanita CLI."""
"""Main amanita."""

import sys

from .cli import main


if __name__ == "__main__":
main()
sys.exit(main())

0 comments on commit 9f504e0

Please sign in to comment.