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

3 statements  

« prev     ^ index     » next       coverage.py v7.6.10, created at 2025-01-21 13:55 +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"]