Skip to content

Commit 39d25c8

Browse files
authored
Fix retro-compatibility for doctest in Specification.description. (#1850)
Signed-off-by: paul.profizi <[email protected]>
1 parent c37f6a3 commit 39d25c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansys/dpf/core/operator_specification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def description(self) -> str:
349349
>>> from ansys.dpf import core as dpf
350350
>>> operator = dpf.operators.math.scale()
351351
>>> operator.specification.description
352-
'Scales a field by a constant factor. This factor can be a scalar ...'
352+
'Scales a field by a constant factor...'
353353
"""
354354
if self._internal_obj is not None:
355355
return self._api.operator_specification_get_description(self)

0 commit comments

Comments
 (0)