mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-14 02:27:42 -07:00
[utils] Ensure allow_types
for variadic()
is a tuple
This commit is contained in:
parent
45495228b7
commit
f35b757c82
2 changed files with 3 additions and 0 deletions
|
@ -4213,6 +4213,8 @@ def multipart_encode(data, boundary=None):
|
|||
|
||||
|
||||
def variadic(x, allowed_types=(compat_str, bytes, dict)):
|
||||
if not isinstance(allowed_types, tuple) and isinstance(allowed_types, compat_collections_abc.Iterable):
|
||||
allowed_types = tuple(allowed_types)
|
||||
return x if isinstance(x, compat_collections_abc.Iterable) and not isinstance(x, allowed_types) else (x,)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue