mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
Restyled by autopep8
This commit is contained in:
committed by
Mungai Geoffrey
parent
9c16d27507
commit
ec7352ec56
@@ -59,7 +59,8 @@ def populate():
|
||||
"""
|
||||
start = time.time()
|
||||
|
||||
s, files = helpers.run_fast_scandir(settings.HOME_DIR, [".flac", ".mp3"], full=True)
|
||||
s, files = helpers.run_fast_scandir(
|
||||
settings.HOME_DIR, [".flac", ".mp3"], full=True)
|
||||
|
||||
_bar = Bar("Processing files", max=len(files))
|
||||
|
||||
@@ -123,7 +124,8 @@ def populate_images():
|
||||
_bar = Bar("Processing images", max=len(artists))
|
||||
for artist in artists:
|
||||
file_path = (
|
||||
helpers.app_dir + "/images/artists/" + artist.replace("/", "::") + ".webp"
|
||||
helpers.app_dir + "/images/artists/" +
|
||||
artist.replace("/", "::") + ".webp"
|
||||
)
|
||||
|
||||
if not os.path.exists(file_path):
|
||||
@@ -365,7 +367,8 @@ def get_album_bio(title: str, albumartist: str):
|
||||
return None
|
||||
|
||||
try:
|
||||
bio = data["album"]["wiki"]["summary"].split('<a href="https://www.last.fm/')[0]
|
||||
bio = data["album"]["wiki"]["summary"].split(
|
||||
'<a href="https://www.last.fm/')[0]
|
||||
except KeyError:
|
||||
bio = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user