Skip to content

Commit 88eeb09

Browse files
committed
chore: fix lint
1 parent 650c81c commit 88eeb09

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.lycheeignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
https://pubs.acs.org/doi/abs/10.1021/acs.nanolett.8b00670
22
https://advances.sciencemag.org/content/5/9/eaax5101.abstract
3-
https://www.vasp.at/wiki/index.php/Input
3+
https://www.vasp.at/wiki/index.php/Input

examples/job/run-simulations-and-extract-properties.ipynb

+3-5
Original file line numberDiff line numberDiff line change
@@ -523,12 +523,10 @@
523523
"results = []\n",
524524
"for material in materials:\n",
525525
" job = next((job for job in jobs if job[\"_material\"][\"_id\"] == material[\"_id\"]))\n",
526-
" final_structure = get_property_by_subworkflow_and_unit_indicies(\n",
527-
" property_endpoints, \"final_structure\", job, 0, 0\n",
528-
" )[\"data\"]\n",
529-
" pressure = get_property_by_subworkflow_and_unit_indicies(property_endpoints, \"pressure\", job, 0, 0)[\"data\"][\n",
530-
" \"value\"\n",
526+
" final_structure = get_property_by_subworkflow_and_unit_indicies(property_endpoints, \"final_structure\", job, 0, 0)[\n",
527+
" \"data\"\n",
531528
" ]\n",
529+
" pressure = get_property_by_subworkflow_and_unit_indicies(property_endpoints, \"pressure\", job, 0, 0)[\"data\"][\"value\"]\n",
532530
" unit_flowchart_id = job[\"workflow\"][\"subworkflows\"][1][\"units\"][1][\"flowchartId\"]\n",
533531
" band_gap_direct = property_endpoints.get_direct_band_gap(job[\"_id\"], unit_flowchart_id)\n",
534532
" band_gap_indirect = property_endpoints.get_indirect_band_gap(job[\"_id\"], unit_flowchart_id)\n",

0 commit comments

Comments
 (0)