Coverage for swid_lint/cli.py: 0.00%

7 statements  

« prev     ^ index     » next       coverage.py v7.4.1, created at 2024-02-04 22:47:34 +00:00

1"""Visit folder tree with SWID documents, validate the latter, and generate reports.""" 

2 

3import sys 

4from typing import no_type_check 

5 

6import swid_lint.lint as swid_lint 

7 

8 

9@no_type_check 

10def main(argv=None): 

11 """Process the job.""" 

12 argv = sys.argv[1:] if argv is None else argv 

13 swid_lint.main(argv)