Nem-git / tidal-dl

Download Tidal music using HifiTui
9 stars 0 forks source link

File "/home/ubuntu/tidal/tools/order.py", line 180 #2

Closed 3bagorion33 closed 3 weeks ago

3bagorion33 commented 3 weeks ago
    url: str = f"https://resources.tidal.com/images/{id.replace("-", "/")}/{resolution}x{resolution}.jpg"
                                                                 ^
SyntaxError: f-string: unmatched '('

Should use ' instead "

    url: str = f"https://resources.tidal.com/images/{id.replace('-', '/')}/{resolution}x{resolution}.jpg"
Nem-git commented 3 weeks ago

Thanks for telling me! I'm fixing that right away!