Coverage for src/spectroflat/utils/processing.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2024-03-28 07:59 +0000

1#!/usr/bin/env python3 

2# -*- coding: utf-8 -*- 

3""" 

4Utilities for (multi) processing 

5 

6@author: hoelken 

7""" 

8 

9from qollib.processing import simultaneous 

10 

11 

12class MP: 

13 @staticmethod 

14 def simultaneous(func, args, workers: int = None, raise_exception: bool = True): 

15 return simultaneous(func, args, workers, raise_exception)