From 265693306fb778b46325772c4293d9dbe8c00aef Mon Sep 17 00:00:00 2001 From: "paul.profizi" Date: Mon, 28 Oct 2024 09:53:52 +0100 Subject: [PATCH] Update failing docstring Signed-off-by: paul.profizi --- src/ansys/dpf/core/operator_specification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ansys/dpf/core/operator_specification.py b/src/ansys/dpf/core/operator_specification.py index 7ad49352e1..7584837dba 100644 --- a/src/ansys/dpf/core/operator_specification.py +++ b/src/ansys/dpf/core/operator_specification.py @@ -347,9 +347,9 @@ def description(self) -> str: Examples -------- >>> from ansys.dpf import core as dpf - >>> operator = dpf.operators.math.scale_by_field() + >>> operator = dpf.operators.math.scale() >>> operator.specification.description - "Scales a field (in 0) by a scalar field (in 1). If one field's ..." + "Scales a field by a constant factor. This factor can be a scalar ..." """ if self._internal_obj is not None: return self._api.operator_specification_get_description(self)