Skip to content

Commit

Permalink
fix pre-3.10 typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbreckenridge committed Aug 6, 2023
1 parent d9c2ebf commit 42d84b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion listenbrainz_export/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def request_playing_now(
logger.debug(f"Requesting {r.url}")
r.raise_for_status()
data = r.json()
listens: list[Any] = data["payload"]["listens"]
listens: List[Any] = data["payload"]["listens"]
return listens


Expand Down

0 comments on commit 42d84b3

Please sign in to comment.