mirror of
https://github.com/beetbox/beets.git
synced 2026-07-22 02:06:50 -04:00
Fix formatting
This commit is contained in:
@@ -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():
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user