From e3af3f0da2d57684f5d25de780d609f1b4f1086c Mon Sep 17 00:00:00 2001 From: linuxrider Date: Mon, 29 Jan 2024 11:29:19 +0100 Subject: [PATCH] Docs: Fix import typos in example snippets (#323) --- docs/source/workflows/base/relax/index.rst | 2 +- docs/source/workflows/composite/dc.rst | 2 +- docs/source/workflows/composite/eos.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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')