Skip to content

Commit

Permalink
FIxed truth test (ruff)
Browse files Browse the repository at this point in the history
  • Loading branch information
slanglade committed Jun 10, 2024
1 parent 6fec25f commit 2a3bfc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamrip/client/deezer.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async def get_track(self, item_id: str) -> dict:
raise NonStreamableError(e)

# If not readable (wrong zone, track id not available anymore etc.)
if item["readable"] == False:
if not item["readable"]:
try:
if ("alternative" in item):
logger.warning(f"Original track id {item_id} not readable, using alternative {item['d']}")
Expand Down

0 comments on commit 2a3bfc4

Please sign in to comment.