Skip to content

Commit

Permalink
Ensure local variable is initialised to fix pylint complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
MoojMidge authored May 26, 2024
1 parent 5ab1ce3 commit 5918cee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/lib/playbackmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def launch_popup(self, episode, source=None):
# Add next file to playlist if existing playlist is not being used
if source != 'playlist':
queued = self.state.queued = self.api.queue_next_item(episode)
else:
queued = False

# We have a next up episode choose mode
if get_setting_int('simpleMode') == 0:
Expand Down

0 comments on commit 5918cee

Please sign in to comment.