(self, lib: library.Library)
| 252 | self.match.apply_metadata() |
| 253 | |
| 254 | def duplicate_items(self, lib: library.Library) -> list[library.Item]: |
| 255 | duplicate_items: list[library.Item] = [] |
| 256 | for album in self.find_duplicates(lib): |
| 257 | duplicate_items += album.items() |
| 258 | return duplicate_items |
| 259 | |
| 260 | def remove_duplicates(self, lib: library.Library) -> None: |
| 261 | duplicate_albums = self.find_duplicates(lib) |
no test coverage detected