Skip to content

Commit e8cc270

Browse files
authored
Fix doctest for Specification.description. (#803)
1 parent a3ea75c commit e8cc270

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
@@ -298,7 +298,7 @@ def description(self) -> str:
298298
>>> from ansys.dpf import core as dpf
299299
>>> operator = dpf.operators.math.scale_by_field()
300300
>>> operator.specification.description
301-
"Scales a field (in 0) by a scalar field (in 1). If one field's ... the entire other field."
301+
"Scales a field (in 0) by a scalar field (in 1). If one field's ..."
302302
"""
303303
if self._internal_obj is not None:
304304
return self._api.operator_specification_get_description(self)

0 commit comments

Comments
 (0)