Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 22, 2024
1 parent 50ad2d6 commit 4ee6dc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions plugin_list.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
"accordion = ipw.Accordion()\n",
"\n",
"for i, (plugin_name, plugin_data) in enumerate(data.items()):\n",
" installed = is_package_installed(plugin_data.get('package_name',plugin_name))\n",
" installed = is_package_installed(plugin_data.get(\"package_name\", plugin_name))\n",
"\n",
" # Output container with customized styling\n",
" output_container = ipw.HTML(\n",
Expand Down Expand Up @@ -251,7 +251,7 @@
"\n",
" install_btn.on_click(\n",
" lambda _btn,\n",
" pn=plugin_data.get('package_name',plugin_name),\n",
" pn=plugin_data.get(\"package_name\", plugin_name),\n",
" pip=plugin_data.get(\"pip\", None), # noqa: B008\n",
" github=plugin_data.get(\"github\", \"\"), # noqa: B008\n",
" post=plugin_data.get(\"post_install\", None), # noqa: B008\n",
Expand All @@ -264,7 +264,7 @@
" )\n",
" remove_btn.on_click(\n",
" lambda _btn,\n",
" pn=plugin_data.get('package_name',plugin_name),\n",
" pn=plugin_data.get(\"package_name\", plugin_name),\n",
" oc=output_container,\n",
" mc=message_container,\n",
" ib=install_btn,\n",
Expand Down
2 changes: 1 addition & 1 deletion plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Bader charge analysis (aiida-bader):
github: https://github.com/superstar54/aiida-bader
documentation: https://aiida-bader.readthedocs.io/
pip: aiida-bader
package_name: aiida-bader
package_name: aiida-bader

Phonons and IR/Raman (aiidalab-qe-vibroscopy):
description: Plugin to compute phonons, IR/Raman spectra, Inelastic Neutron Scattering of materials
Expand Down

0 comments on commit 4ee6dc3

Please sign in to comment.