We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b9b8a commit ef6919aCopy full SHA for ef6919a
python-selenium/src/bandcamp/app/tui.py
@@ -24,9 +24,9 @@ def interact():
24
pause(player)
25
case ["tracks"]:
26
display_tracks(player)
27
- case ["more"] if len(
28
- player.tracklist.available_tracks
29
- ) >= MAX_TRACKS:
+ case ["more"] if (
+ len(player.tracklist.available_tracks) >= MAX_TRACKS
+ ):
30
print(
31
"Can't load more tracks. Pick one from the track list."
32
)
0 commit comments