Skip to content

Commit

Permalink
fix: resolve Python linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomiguelino committed Sep 16, 2024
1 parent 606afe1 commit c574f9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ def set_asset(self, uri, duration):
}

def play(self):
self.run = sh.Command(self.player_args[0])(*self.player_args[1:], **self.player_kwargs)
self.run = sh.Command(self.player_args[0])(
*self.player_args[1:], **self.player_kwargs
)

def stop(self):
try:
Expand Down

0 comments on commit c574f9f

Please sign in to comment.