[modules/spotify] Fix formatting

Fixed by black
This commit is contained in:
gkeep 2020-06-29 23:02:25 +03:00
parent 20916811c5
commit 7e0be1bf14

View file

@ -79,9 +79,13 @@ class Module(core.module.Module):
"cmd": self.__cmd + "PlayPause", "cmd": self.__cmd + "PlayPause",
} }
playback_status = str( playback_status = str(
dbus.Interface(dbus.SessionBus().get_object( dbus.Interface(
"org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2"), "org.freedesktop.DBus.Properties") dbus.SessionBus().get_object(
.Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus") "org.mpris.MediaPlayer2.spotify",
"/org/mpris/MediaPlayer2",
),
"org.freedesktop.DBus.Properties",
).Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
) )
if playback_status == "Playing": if playback_status == "Playing":
widget.set("state", "playing") widget.set("state", "playing")