We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee07927 + 5ec73f7 commit a671f14Copy full SHA for a671f14
docs/user/codes/vasp.md
@@ -339,15 +339,15 @@ result = store.query_one(
339
)
340
341
for number, (key, cohp) in enumerate(
342
- result["output"]["lobsterpy_data"]["cohp_plot_data"].items()
+ result["output"]["lobsterpy_data"]["cohp_plot_data"]["data"].items()
343
):
344
plotter = CohpPlotter()
345
cohp = Cohp.from_dict(cohp)
346
plotter.add_cohp(key, cohp)
347
plotter.save_plot(f"plots_all_bonds{number}.pdf")
348
349
350
- result["output"]["lobsterpy_data_cation_anion"]["cohp_plot_data"].items()
+ result["output"]["lobsterpy_data_cation_anion"]["cohp_plot_data"]["data"].items()
351
352
353
0 commit comments