Coverage for piemap/api.py: 100.00%

9 statements  

« prev     ^ index     » next       coverage.py v7.4.1, created at 2024-02-04 21:26:31 +00:00

1"""Create single view visualization mapping parameter values to an area scale resembling a (quality) pie.""" 

2 

3import argparse 

4from typing import no_type_check 

5 

6from piemap import DEBUG, ENCODING, ENCODING_ERRORS_POLICY, log 

7 

8 

9@no_type_check 

10def parse(text): # noqa 

11 """Later we parse the DSL.""" 

12 return NotImplemented 

13 

14 

15def main(options: argparse.Namespace) -> int: 

16 log.info(f'{DEBUG=}, {ENCODING=}, {ENCODING_ERRORS_POLICY=}') 

17 return 0