diff --git a/docs/source/workflows/base/relax/index.rst b/docs/source/workflows/base/relax/index.rst index 94c7be8c..9d11e526 100644 --- a/docs/source/workflows/base/relax/index.rst +++ b/docs/source/workflows/base/relax/index.rst @@ -36,7 +36,7 @@ A typical script for the submission of common relax workflow could look somethin .. code:: python from aiida.engine import submit - from aiida.plugin import WorkflowFactory + from aiida.plugins import WorkflowFactory RelaxWorkChain = WorkflowFactory('common_workflows.relax.') # Load the relax workflow implementation of choice. diff --git a/docs/source/workflows/composite/dc.rst b/docs/source/workflows/composite/dc.rst index ccd636e1..8166bacc 100644 --- a/docs/source/workflows/composite/dc.rst +++ b/docs/source/workflows/composite/dc.rst @@ -17,7 +17,7 @@ A typical script for the submission of common DC workflow could look something l from aiida.orm import List, Dict from aiida.engine import submit - from aiida.plugin import WorkflowFactory + from aiida.plugins import WorkflowFactory cls = WorkflowFactory('common_workflows.dissociation_curve') diff --git a/docs/source/workflows/composite/eos.rst b/docs/source/workflows/composite/eos.rst index ed71ce54..121139be 100644 --- a/docs/source/workflows/composite/eos.rst +++ b/docs/source/workflows/composite/eos.rst @@ -15,7 +15,7 @@ A typical script for the submission of common EoS workflow could look something from aiida.orm import List, Dict from aiida.engine import submit - from aiida.plugin import WorkflowFactory + from aiida.plugins import WorkflowFactory cls = WorkflowFactory('common_workflows.eos')