fixup! fixup! Adjust line length to match Code Style Guide (see #103)
This commit is contained in:
parent
ce46f87cc2
commit
c4d421793b
1 changed files with 4 additions and 2 deletions
|
|
@ -507,8 +507,10 @@ class Client(Base):
|
|||
self._logger.debug("track: %r", track)
|
||||
# Album
|
||||
album = self._extract_album(song, lookup=False)
|
||||
if (len(self._playlist) == 0
|
||||
or self._playlist[len(self._playlist) - 1] != album):
|
||||
if (
|
||||
len(self._playlist) == 0
|
||||
or self._playlist[len(self._playlist) - 1] != album
|
||||
):
|
||||
self._playlist.append(album)
|
||||
else:
|
||||
album = self._playlist[len(self._playlist) - 1]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue