Coverage for src/sensai/util/__init__.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-13 22:17 +0000

1import sys 

2 

3from . import aggregation 

4from . import cache 

5from . import cache_mysql 

6from .dtype import dict_to_ordered_tuples 

7from .sequences import concat_sequences 

8from .helper import * 

9from .logging import LogTime 

10 

11 

12def _backward_compatibility(): 

13 # module 'counter' was moved to 'aggregation' 

14 sys.modules[f"{__name__}.counter"] = aggregation 

15 

16 

17_backward_compatibility()