[BUGFIX] Remove description from Soundcloud source variable
This commit is contained in:
parent
12a857bf9a
commit
24db509a01
2 changed files with 9 additions and 9 deletions
|
|
@ -177,12 +177,3 @@ class EntryVariables(SourceVariables):
|
||||||
The uploaded date formatted as YYYY-MM-DD
|
The uploaded date formatted as YYYY-MM-DD
|
||||||
"""
|
"""
|
||||||
return f"{self.upload_year}-{self.upload_month_padded}-{self.upload_day_padded}"
|
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")
|
|
||||||
|
|
|
||||||
|
|
@ -91,3 +91,12 @@ class YoutubeVideoVariables(EntryVariables):
|
||||||
The size of the playlist. For non-playlist download strategies, this will always return 1.
|
The size of the playlist. For non-playlist download strategies, this will always return 1.
|
||||||
"""
|
"""
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
@property
|
||||||
|
def description(self: BaseEntry) -> str:
|
||||||
|
"""
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
The description of the entry.
|
||||||
|
"""
|
||||||
|
return self.kwargs("description")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue