Coverage for labnirs2snirf / __main__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-11-28 06:02 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2025-11-28 06:02 +0000
1"""
2Entry point for running labnirs2snirf as a module.
4This module provides the main entry point when the package is executed
5with `python -m labnirs2snirf`.
6"""
8import sys
10# Entry point for when the module is run as a script
11if __name__ == "__main__":
12 from .labnirs2snirf import main
14 sys.exit(main())