(all_files: List[Path], max_len: int)
| 42 | |
| 43 | |
| 44 | def build_file_set(all_files: List[Path], max_len: int): |
| 45 | truncated_files = [truncate_file(file, max_len) for file in all_files] |
| 46 | return set(truncated_files) |
| 47 | |
| 48 | |
| 49 | @dataclass |
no test coverage detected
searching dependent graphs…