(ids)
| 145 | |
| 146 | |
| 147 | def print_ids(ids): |
| 148 | for k, error_id in enumerate(sorted(ids)): |
| 149 | if k % 10 > 0: |
| 150 | print(" ", end="") |
| 151 | elif k > 0: |
| 152 | print() |
| 153 | print(error_id, end="") |
| 154 | |
| 155 | |
| 156 | def print_ids_per_file(ids, id_to_file_names, top_dir): |
no outgoing calls
no test coverage detected