Pretty print a list of elements with one line per element and a - starting each line.
(l)
| 826 | |
| 827 | |
| 828 | def _print_list(l) -> str: |
| 829 | """ |
| 830 | Pretty print a list of elements with one line per element and a - starting each line. |
| 831 | """ |
| 832 | return "\n".join([f"- {f}" for f in l]) |
| 833 | |
| 834 | |
| 835 | def update_test_map_with_core_pipelines(json_output_file: str): |
no outgoing calls
no test coverage detected
searching dependent graphs…