mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 22:51:45 +00:00
[compat] Remove unnecessary code
This commit is contained in:
parent
8f3343809e
commit
c634ad2a3c
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 New Issue
Block a user