(temp_dir: Path, column: str)
| 86 | |
| 87 | |
| 88 | def read_file(temp_dir: Path, column: str): |
| 89 | usage_stats_file = temp_dir / usage_constants.USAGE_STATS_FILE |
| 90 | with usage_stats_file.open() as f: |
| 91 | result = json.load(f) |
| 92 | return result[column] |
| 93 | |
| 94 | |
| 95 | def print_dashboard_log(): |
no test coverage detected
searching dependent graphs…