Formats the job name for pretty printing.
(job_name: str)
| 448 | |
| 449 | |
| 450 | def format_job_name(job_name: str) -> str: |
| 451 | """Formats the job name for pretty printing.""" |
| 452 | dict_output = get_values_from_path(job_name, separator="_") |
| 453 | return f'{dict_output["task"].upper()}(seed={dict_output["seed"]})' |
| 454 | |
| 455 | |
| 456 | def _print_table(results: Dict[str, Dict[str, Any]]): |
no test coverage detected