Coverage for scheduler/threading/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.0.4, created at 2024-06-09 19:18 +0000

1""" 

2Implementation of a `threading` compatible in-process scheduler. 

3 

4Author: Jendrik A. Potyka, Fabian A. Preiss 

5""" 

6 

7from scheduler.error import SchedulerError 

8from scheduler.threading.scheduler import Scheduler 

9 

10__all__ = ["SchedulerError", "Scheduler"]