(analyzer)
| 22 | |
| 23 | |
| 24 | def get_analyzer_description(analyzer) -> str: |
| 25 | doc = getattr(analyzer, "analyzer_description", None) |
| 26 | if not doc: |
| 27 | doc = inspect.getdoc(analyzer) or "Description N/A" |
| 28 | return doc |
| 29 | |
| 30 | |
| 31 | def check_pypi_stats() -> dict: |
no outgoing calls
no test coverage detected