polybar: Fix linting error for playerctl script
This commit is contained in:
parent
0272834fcc
commit
7090f6614f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue