Restyle New album page design (#77)

This commit is contained in:
restyled-io[bot]
2022-07-06 17:38:11 +03:00
committed by Mungai Geoffrey
parent 95ad7ceadc
commit 73891aa5cf
8 changed files with 29 additions and 28 deletions
+3 -5
View File
@@ -3,11 +3,10 @@ Contains all the track routes.
"""
from app import api
from app import instances
from app import models
from flask import Blueprint
from flask import send_file
from app import models
track_bp = Blueprint("track", __name__, url_prefix="/")
@@ -37,6 +36,5 @@ def get_sample_track():
Returns a sample track object.
"""
return instances.tracks_instance.get_song_by_album(
"Legends Never Die", "Juice WRLD"
)
return instances.tracks_instance.get_song_by_album("Legends Never Die",
"Juice WRLD")