Fix formatting

This commit is contained in:
Tommy Schnabel-Jones
2026-05-04 13:25:03 -04:00
parent 8323cee499
commit 77bb3b5305
2 changed files with 4 additions and 2 deletions

View File

@@ -220,7 +220,10 @@ class BadFiles(BeetsPlugin):
found_error = False
for error in task._badfiles_checks_failed:
for error_line in error:
if 'checker found 0 errors or warnings' in error_line.lower():
if (
"checker found 0 errors or warnings"
in error_line.lower()
):
continue
if "warning" in error_line.lower():

View File

@@ -345,7 +345,6 @@ class TidalPlugin(MetadataSourcePlugin):
track_by_id: dict[str, TidalTrack],
artist_by_id: dict[str, TidalArtist],
) -> AlbumInfo:
track_infos: list[TrackInfo] = []
for i, track_rel in enumerate(
album["relationships"]["items"]["data"], start=1