mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
denested "if" in Song
This commit is contained in:
parent
68720a41bd
commit
67e8c3ece5
@ -491,9 +491,9 @@ class MultiTag(list):
|
|||||||
|
|
||||||
class Song(collections.UserDict):
|
class Song(collections.UserDict):
|
||||||
def __setitem__(self, key, value):
|
def __setitem__(self, key, value):
|
||||||
# time is deprecated https://mpd.readthedocs.io/en/latest/protocol.html#other-metadata
|
if key == "time": # time is deprecated https://mpd.readthedocs.io/en/latest/protocol.html#other-metadata
|
||||||
if key != "time":
|
pass
|
||||||
if key == "duration":
|
elif key == "duration":
|
||||||
super().__setitem__(key, Duration(value))
|
super().__setitem__(key, Duration(value))
|
||||||
elif key == "format":
|
elif key == "format":
|
||||||
super().__setitem__(key, Format(value))
|
super().__setitem__(key, Format(value))
|
||||||
|
Loading…
Reference in New Issue
Block a user