mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[compat] Remove unnecessary code
This commit is contained in:
parent
8f3343809e
commit
c634ad2a3c
2 changed files with 87 additions and 2944 deletions
3029
yt_dlp/compat.py
3029
yt_dlp/compat.py
File diff suppressed because it is too large
Load diff
|
@ -6303,5 +6303,5 @@ def traverse_dict(dictn, keys, casesense=True):
|
||||||
is_user_input=True, traverse_string=True)
|
is_user_input=True, traverse_string=True)
|
||||||
|
|
||||||
|
|
||||||
def variadic(x, allowed_types=str):
|
def variadic(x, allowed_types=(str, bytes)):
|
||||||
return x if isinstance(x, collections.Iterable) and not isinstance(x, allowed_types) else (x,)
|
return x if isinstance(x, collections.Iterable) and not isinstance(x, allowed_types) else (x,)
|
||||||
|
|
Loading…
Reference in a new issue