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
With following configuration:
--- logging: console: modify: yes level: DEBUG stagerunner: stages: - name: Initialize Run type: ConfigureStage - name: Workspace type: WsbStage arguments: name: Configs ...
original dump is:
logging: console: modify: yes level: DEBUG stagerunner: stages: [{name: Initialize Run, type: ConfigureStage}, {name: Workspace, type: WsbStage, arguments: {name: Configs}}]
After dynamically updating values with following code:
dview = config["logging"]["console"]["level"] dview.set("INFO") lview = config["stagerunner"]["stages"][0]["name"] lview.set("newname")
Changes the data into this:
logging: console: modify: yes level: INFO stagerunner: stages: 0: name: newname
The dict update works as expected but the list gets broken. Reading values from inside of the lists works but not updating.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With following configuration:
original dump is:
After dynamically updating values with following code:
Changes the data into this:
The dict update works as expected but the list gets broken.
Reading values from inside of the lists works but not updating.
The text was updated successfully, but these errors were encountered: