Closed 3bagorion33 closed 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"
Thanks for telling me! I'm fixing that right away!
Should use ' instead "