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
Using your example.py I try and do resp.keys(). It spits back the entire object description. I look at the code, and I see the keys definition which references self._values. I was hoping to not using the _values attribute, since its designated as private, though resp.keys() fails because _values is a set, and not a dict. Is keys() supposed to be removed? or it was missed in some refactor? Thanks!
The text was updated successfully, but these errors were encountered:
Using your example.py I try and do
resp.keys()
. It spits back the entire object description. I look at the code, and I see the keys definition which referencesself._values
. I was hoping to not using the_values
attribute, since its designated as private, thoughresp.keys()
fails because_values
is a set, and not a dict. Iskeys()
supposed to be removed? or it was missed in some refactor? Thanks!The text was updated successfully, but these errors were encountered: