-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
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
Critical data loss #113
Comments
Can you show us what I tried your code using tomlkit >>> print(doc)
{'tool': {'poetry': {'foo': {'option': 'test'}, 'bar': {'option': 'test'}}}}
>>> doc['tool']
{'poetry': {'bar': {'option': 'test'}}}
>>> doc['tool']['poetry']['foo']
{'option': 'test'}
>>> doc['tool']['poetry']['bar']
{'option': 'test'} |
It shows the same as yours. It is critical because I need to make copies of a subset of the document and referenced subsets don't contain everything. |
|
Any update? |
I've created a fork of tomlkit v0.7.0 with the issue fixed, try it: GitHub: https://github.com/frostming/atoml |
Using latest
0.7.0
:cc @frostming @sdispater
The text was updated successfully, but these errors were encountered: