Optimize _Saverdict.update that caused issues for webclient option update (#2224)
This commit is contained in:
parent
965dffa2b7
commit
6f3548eea9
5 changed files with 10 additions and 5 deletions
|
|
@ -522,9 +522,8 @@ def webclient_options(session, *args, **kwargs):
|
|||
session=session,
|
||||
)
|
||||
else:
|
||||
# kwargs provided: persist them to the account object
|
||||
for key, value in kwargs.items():
|
||||
clientoptions[key] = value
|
||||
# kwargs provided: persist them to the account object.
|
||||
clientoptions.update(kwargs)
|
||||
|
||||
|
||||
# OOB protocol-specific aliases and wrappers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue