[CLEANUP] Remove unused functions (#240)
This commit is contained in:
parent
64d4be0a42
commit
3db6a543cf
2 changed files with 0 additions and 18 deletions
|
|
@ -157,20 +157,6 @@ class BaseEntry(BaseEntryVariables, ABC):
|
||||||
|
|
||||||
self._additional_variables: Dict[str, str | int] = {}
|
self._additional_variables: Dict[str, str | int] = {}
|
||||||
|
|
||||||
def base_variable_dict(self) -> Dict[str, str]:
|
|
||||||
"""
|
|
||||||
Returns
|
|
||||||
-------
|
|
||||||
BaseEntry variables that can be nested for playlist, source, etc
|
|
||||||
"""
|
|
||||||
return {
|
|
||||||
"uid": self.uid,
|
|
||||||
"extractor": self.extractor,
|
|
||||||
"title": self.title,
|
|
||||||
"title_sanitized": self.title_sanitized,
|
|
||||||
"webpage_url": self.webpage_url,
|
|
||||||
}
|
|
||||||
|
|
||||||
def kwargs_contains(self, key: str) -> bool:
|
def kwargs_contains(self, key: str) -> bool:
|
||||||
"""Returns whether internal kwargs contains the specified key"""
|
"""Returns whether internal kwargs contains the specified key"""
|
||||||
return key in self._kwargs
|
return key in self._kwargs
|
||||||
|
|
|
||||||
|
|
@ -225,10 +225,6 @@ class ListFormatterValidator(ListValidator[StringFormatterValidator]):
|
||||||
_inner_list_type = StringFormatterValidator
|
_inner_list_type = StringFormatterValidator
|
||||||
|
|
||||||
|
|
||||||
class ListOverridesFormatterValidator(ListValidator[StringFormatterValidator]):
|
|
||||||
_inner_list_type = OverridesStringFormatterValidator
|
|
||||||
|
|
||||||
|
|
||||||
class DictFormatterValidator(LiteralDictValidator):
|
class DictFormatterValidator(LiteralDictValidator):
|
||||||
"""
|
"""
|
||||||
A dict made up of
|
A dict made up of
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue