Coverage for model_workflow/__main__.py: 0%
3 statements
« prev ^ index » next coverage.py v7.9.2, created at 2025-07-23 10:54 +0000
« prev ^ index » next coverage.py v7.9.2, created at 2025-07-23 10:54 +0000
1"""
2Entrypoint module, in case you use `python -m mwf`.
5Why does this file exist, and why __main__? For more info, read:
7- https://www.python.org/dev/peps/pep-0338/
8- https://docs.python.org/2/using/cmdline.html#cmdoption-m
9- https://docs.python.org/3/using/cmdline.html#cmdoption-m
10"""
11from mwf import main
13if __name__ == "__main__":
14 main()