Coverage for src/susi/utils/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2025-06-13 14:15 +0000

1""" 

2## Utility package 

3 

4The `utils` package provides small (predominant static) utilities for recurring 

5tasks in the `susi` code base. For example spawning threads and processes or dealing with 

6collections. 

7 

8Please refer to the description of the individual modules for more details. 

9""" 

10 

11from .collections import Collections 

12from .sub_shift import Shifter 

13from .processing import MP 

14from .git import Git 

15from .exception_handler import ExceptionHandler, error_handler 

16from .timestamps import Timestamps 

17from .pickle import * 

18from .polynomials import min_value, max_value 

19from .progress import * 

20from .slurm import Slurm