From a5bb3aeff503ac8bf6f3296de8b3c3eba4f797f0 Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Mon, 12 Dec 2022 17:40:39 +0100 Subject: [PATCH] The api change after bump the widget base (#333) --- aiidalab_qe/steps.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aiidalab_qe/steps.py b/aiidalab_qe/steps.py index c7b57562b..6efe7fd73 100644 --- a/aiidalab_qe/steps.py +++ b/aiidalab_qe/steps.py @@ -487,15 +487,15 @@ def __init__(self, **kwargs): self._submission_blocker_messages = ipw.HTML() self.pw_code = ComputationalResourcesWidget( - description="pw.x:", input_plugin="quantumespresso.pw" + description="pw.x:", default_calc_job_plugin="quantumespresso.pw" ) self.dos_code = ComputationalResourcesWidget( description="dos.x:", - input_plugin="quantumespresso.dos", + default_calc_job_plugin="quantumespresso.dos", ) self.projwfc_code = ComputationalResourcesWidget( description="projwfc.x:", - input_plugin="quantumespresso.projwfc", + default_calc_job_plugin="quantumespresso.projwfc", ) self.resources_config = ResourceSelectionWidget()