mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-10 13:49:32 +01:00
Fix E703 statement ends with a semicolon
This commit is contained in:
@@ -781,7 +781,7 @@ def getHybridRelease(fullreleaselist):
|
||||
# 'None' will put it at the top which was normal behaviour for pre-ngs
|
||||
# versions
|
||||
if releaseDate is None:
|
||||
return 'None';
|
||||
return 'None'
|
||||
|
||||
if releaseDate.count('-') == 2:
|
||||
return releaseDate
|
||||
|
||||
@@ -310,7 +310,7 @@ def more_filtering(results, album, albumlength, new):
|
||||
|
||||
normalizedAlbumArtist = removeDisallowedFilenameChars(album['ArtistName'])
|
||||
normalizedAlbumTitle = removeDisallowedFilenameChars(album['AlbumTitle'])
|
||||
normalizedResultTitle = removeDisallowedFilenameChars(result[0]);
|
||||
normalizedResultTitle = removeDisallowedFilenameChars(result[0])
|
||||
artistTitleCount = normalizedResultTitle.count(normalizedAlbumArtist)
|
||||
|
||||
if normalizedAlbumArtist in normalizedAlbumTitle and artistTitleCount < 2:
|
||||
|
||||
Reference in New Issue
Block a user