Coverage for src / tracekit / reporting / core_formats / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-11 23:04 +0000

1"""Core report generation functionality - Multi-format renderers. 

2 

3Note: Renamed from 'core' to 'core_formats' to avoid naming conflict 

4with core.py module which contains Report, ReportConfig, Section. 

5""" 

6 

7from tracekit.reporting.core_formats.multi_format import ( 

8 MultiFormatRenderer, 

9 detect_format_from_extension, 

10 render_all_formats, 

11) 

12 

13__all__ = [ 

14 "MultiFormatRenderer", 

15 "detect_format_from_extension", 

16 "render_all_formats", 

17]