(self, class_name_and_file: tuple[str, str])
| 213 | self.locks = locks |
| 214 | |
| 215 | def sort(self, class_name_and_file: tuple[str, str]): |
| 216 | class_name, filename = class_name_and_file |
| 217 | sort_class(class_name, filename, self.dry_run, self.locks) |
| 218 | |
| 219 | |
| 220 | def main(index_filename: str, class_names: list[str], dry_run: bool): |
nothing calls this directly
no test coverage detected