Remove some whitespace
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 1m59s
Cargo CI / Lint (pull_request) Successful in 1m7s

This commit is contained in:
Wojciech Kozlowski 2025-01-02 15:43:14 +01:00
parent fa5d8f84f9
commit f66e62f374

View File

@ -123,7 +123,6 @@ impl Merge for Artist {
let other_without_id = Artist::merge_albums_by_lib_id(&mut self.albums, other.albums); let other_without_id = Artist::merge_albums_by_lib_id(&mut self.albums, other.albums);
Artist::merge_albums_by_title(&mut self.albums, other_without_id); Artist::merge_albums_by_title(&mut self.albums, other_without_id);
self.albums.sort_unstable(); self.albums.sort_unstable();
} }
} }