(path="results/data.json")
| 298 | |
| 299 | |
| 300 | def get_commit_data_cache(path="results/data.json"): |
| 301 | global _commit_data_cache |
| 302 | if _commit_data_cache is None: |
| 303 | _commit_data_cache = _CommitDataCache(path) |
| 304 | return _commit_data_cache |
| 305 | |
| 306 | |
| 307 | class _CommitDataCache: |
no test coverage detected
searching dependent graphs…