[modules/spotify] Fix formatting
Fixed by black
This commit is contained in:
parent
20916811c5
commit
7e0be1bf14
1 changed files with 7 additions and 3 deletions
|
@ -79,9 +79,13 @@ class Module(core.module.Module):
|
|||
"cmd": self.__cmd + "PlayPause",
|
||||
}
|
||||
playback_status = str(
|
||||
dbus.Interface(dbus.SessionBus().get_object(
|
||||
"org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2"), "org.freedesktop.DBus.Properties")
|
||||
.Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
|
||||
dbus.Interface(
|
||||
dbus.SessionBus().get_object(
|
||||
"org.mpris.MediaPlayer2.spotify",
|
||||
"/org/mpris/MediaPlayer2",
|
||||
),
|
||||
"org.freedesktop.DBus.Properties",
|
||||
).Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
|
||||
)
|
||||
if playback_status == "Playing":
|
||||
widget.set("state", "playing")
|
||||
|
|
Loading…
Add table
Reference in a new issue