Coverage for piemap/piemap.py: 100.00%

7 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2022-10-05 21:34 +0200

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

2import argparse 

3 

4from piemap import DEBUG, ENCODING, ENCODING_ERRORS_POLICY, log 

5 

6 

7def parse(text): # noqa 

8 """Later we parse the DSL.""" 

9 return NotImplemented 

10 

11 

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

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

14 return 0