Coverage for src/susi/__init__.py: 100%
9 statements
« prev ^ index » next coverage.py v7.5.0, created at 2025-06-13 14:15 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2025-06-13 14:15 +0000
1# import all the objects that shall be directly available under `susi` namespace here.
3from .base import *
4from .io import *
5from .db import *
6from .analyse import *
7from .utils import yaml, error_handler, progress
9from .raw2fits import read_raw_save_to_fits
10from .reduc import *
12# Init the console logging.
13Logging.init_console()
15# Init/set the right umask 002 = 775 = rwxrwxr-x
16os.umask(0o02)