[BUGFIX] Remove description from Soundcloud source variable

This commit is contained in:
jbannon 2022-07-21 05:02:12 +00:00
parent 12a857bf9a
commit 24db509a01
2 changed files with 9 additions and 9 deletions

View file

@ -177,12 +177,3 @@ class EntryVariables(SourceVariables):
The uploaded date formatted as YYYY-MM-DD
"""
return f"{self.upload_year}-{self.upload_month_padded}-{self.upload_day_padded}"
@property
def description(self: BaseEntry) -> str:
"""
Returns
-------
The description of the entry.
"""
return self.kwargs("description")

View file

@ -91,3 +91,12 @@ class YoutubeVideoVariables(EntryVariables):
The size of the playlist. For non-playlist download strategies, this will always return 1.
"""
return 1
@property
def description(self: BaseEntry) -> str:
"""
Returns
-------
The description of the entry.
"""
return self.kwargs("description")