forked from LBRYCommunity/lbry-sdk
fix kwargs bug
This commit is contained in:
parent
f8e418fb44
commit
450bed6350
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ class AuthJSONRPCServer(AuthorizedBase):
|
|||
elif len(args) == 1 and isinstance(args[0], dict):
|
||||
# TODO: this is for backwards compatibility. Remove this once API and UI are updated
|
||||
# TODO: also delete EMPTY_PARAMS then
|
||||
_args, _kwargs = (), args
|
||||
_args, _kwargs = (), args[0]
|
||||
elif len(args) == 2 and isinstance(args[0], list) and isinstance(args[1], dict):
|
||||
_args, _kwargs = args
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue