"""Allow running the CLI as a module.""" import sys from . import main if __name__ == "__main__": sys.exit(main())