You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New API: remove side effect when calling from_dict
Currently, when we are calling "from_dict" from one of the classes, we
are destroying the dict passed as argument.
The reason is that we are using dict.pop() function to access the dict
members, but that seems wasteful and unnecessary when we can access the
fields the traditional way using the [] operator.
Signed-off-by: Martin Vrachev <[email protected]>
0 commit comments