ran linter
This commit is contained in:
parent
d116818172
commit
1fc6ee9896
2 changed files with 3 additions and 3 deletions
|
|
@ -114,8 +114,8 @@ class SoundcloudAlbum(Entry):
|
|||
playlist_metadata=PlaylistMetadata(
|
||||
playlist_id=self.uid,
|
||||
playlist_extractor=self.extractor,
|
||||
playlist_index= track.kwargs("playlist_index"),
|
||||
playlist_count = self.track_count
|
||||
playlist_index=track.kwargs("playlist_index"),
|
||||
playlist_count=self.track_count,
|
||||
),
|
||||
)
|
||||
for track in tracks
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class SoundcloudVariables(EntryVariables):
|
|||
-------
|
||||
The total tracks in album. For singles, it will always be 1.
|
||||
"""
|
||||
return 1
|
||||
return 1
|
||||
|
||||
@property
|
||||
def album(self) -> str:
|
||||
|
|
|
|||
Loading…
Reference in a new issue