polybar: Fix linting error for playerctl script

This commit is contained in:
Erwin Boskma 2024-01-25 12:39:27 +01:00
parent 0272834fcc
commit 7090f6614f
Signed by: erwin
SSH key fingerprint: SHA256:OCinH/khuGY1LA9RG8YLM8GNH6C1DDXBdy3SNE+I5Hw

View file

@ -47,7 +47,7 @@ if os.path.isfile(player_file):
player_found = False
player_changed = False
player_index = 0
for (index, p) in enumerate(players):
for index, p in enumerate(players):
if p.instance == current_player_name:
player_found = True
player_index = index