We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given:
from jsonpath_rw import parse a = parse('$.a') x = {'a': None} y = {}
Both of these raise NotImplementedError:
NotImplementedError
a.update(x, 1) a.update(y, 1)
I'm on Python 3.6.6
UPDATE: Ok, so update is not meant to add new keys. Which leaves a.update(x, 1).
update
a.update(x, 1)
The text was updated successfully, but these errors were encountered:
I think you're using pypi and not the repo? Answered in #28 (comment)
They haven't had a release in a long time
Sorry, something went wrong.
No branches or pull requests
Given:
Both of these raise
NotImplementedError
:I'm on Python 3.6.6
UPDATE: Ok, so
update
is not meant to add new keys. Which leavesa.update(x, 1)
.The text was updated successfully, but these errors were encountered: