Coverage for lintro / formatters / core / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2026-04-03 18:53 +0000

1"""Core formatting abstractions for tool-agnostic table rendering. 

2 

3Re-exports from format_registry for backward compatibility. 

4""" 

5 

6from lintro.formatters.core.format_registry import ( 

7 DEFAULT_FORMAT, 

8 OutputStyle, 

9 TableDescriptor, 

10 get_format_map, 

11 get_string_format_map, 

12 get_style, 

13) 

14 

15__all__ = [ 

16 "OutputStyle", 

17 "TableDescriptor", 

18 "get_style", 

19 "get_format_map", 

20 "get_string_format_map", 

21 "DEFAULT_FORMAT", 

22]