(self, issues: list, report_format: str)
| 68 | |
| 69 | class Reporter: |
| 70 | def __init__(self, issues: list, report_format: str): |
| 71 | self.issues = issues |
| 72 | self.format = report_format |
| 73 | |
| 74 | def generate(self) -> str: |
| 75 | if self.format == "json": |
nothing calls this directly
no outgoing calls
no test coverage detected