From d852d8c942bdc80ff553126e2f7ea366ee23ae29 Mon Sep 17 00:00:00 2001 From: Eirini Koutsaniti Date: Fri, 9 Sep 2022 13:34:23 +0200 Subject: [PATCH] Fix documentation of modules test attribute --- reframe/core/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reframe/core/pipeline.py b/reframe/core/pipeline.py index 2f789437b4..2a0782eb9f 100644 --- a/reframe/core/pipeline.py +++ b/reframe/core/pipeline.py @@ -759,7 +759,7 @@ def pipeline_hooks(cls): #: #: These modules will be loaded during the :func:`setup` phase. #: - #: :type: :class:`List[str]` + #: :type: :class:`List[str]` or :class:`Dict[str, object]` #: :default: ``[]`` modules = variable(typ.List[str], typ.List[typ.Dict[str, object]], value=[], loggable=True)