Skip to content

Commit a8ef62a

Browse files
committed
chore: small adjustments
1 parent a5c7999 commit a8ef62a

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ default:
88
packages_common:
99
- pandas==1.5.3
1010
- ase==3.22.1
11+
- ipywidgets
1112
packages_python:
1213
- pymatgen==2024.4.13
1314
packages_pyodide:
@@ -30,7 +31,6 @@ default:
3031
notebooks:
3132
- name: create_interface_with_min_strain_zsl.ipynb
3233
packages_common:
33-
- ipywidgets
3434
- plotly==5.18
3535
- nbformat>=4.2.0
3636
packages_python:
@@ -60,7 +60,6 @@ notebooks:
6060
- emfs:/drive/api-examples/packages/watchdog-2.3.1-py3-none-any.whl
6161
- name: create_point_defect.ipynb
6262
packages_common:
63-
- ipywidgets
6463
packages_python:
6564
packages_pyodide:
6665
- mat3ra-esse

other/materials_designer/specific_examples/defect_creation_island.ipynb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,9 @@
266266
"cell_type": "code",
267267
"outputs": [],
268268
"source": [
269-
"from utils.jupyterlite import write_materials_to_folder, download_content_to_file\n",
269+
"from utils.jupyterlite import write_materials_to_folder\n",
270270
"\n",
271-
"write_materials_to_folder(slab_with_island, \"./downloads\")\n",
272-
"download_content_to_file(slab_with_island.to_json(), \"slab_with_island.json\")"
271+
"write_materials_to_folder(slab_with_island, \"./downloads\")"
273272
],
274273
"metadata": {
275274
"collapsed": false

other/materials_designer/specific_examples/defect_creation_point_substitution_graphene.ipynb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,9 @@
258258
"cell_type": "code",
259259
"outputs": [],
260260
"source": [
261-
"from utils.jupyterlite import write_materials_to_folder, download_content_to_file\n",
261+
"from utils.jupyterlite import write_materials_to_folder\n",
262262
"material_with_defect.name = \"N-doped Graphene\"\n",
263-
"write_materials_to_folder([material_with_defect], \"../uploads\")\n",
264-
"download_content_to_file(material_with_defect.to_json(), \"N-doped_Graphene.json\")"
263+
"write_materials_to_folder([material_with_defect], \"./downloads\")"
265264
],
266265
"metadata": {
267266
"collapsed": false

0 commit comments

Comments
 (0)