Skip to content

Commit 114171c

Browse files
committed
Fix Specification doctests
1 parent dea6f62 commit 114171c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ansys/dpf/core/operator_specification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ def inputs(self) -> dict[int, PinSpecification]:
386386
True
387387
>>> operator.specification.inputs[4]
388388
PinSpecification(name='data_sources', _type_names=['data_sources'], ...set', ellipsis=False,
389-
name_derived_class='')
389+
name_derived_class='', aliases=[...])
390390
"""
391391
if self._map_input_pin_spec is None:
392392
self._map_input_pin_spec = {}
@@ -407,7 +407,7 @@ def outputs(self) -> dict[int, PinSpecification]:
407407
>>> operator = dpf.operators.mesh.mesh_provider()
408408
>>> operator.specification.outputs
409409
{0: PinSpecification(name='mesh', _type_names=['abstract_meshed_region'], ...=False,
410-
name_derived_class='')}
410+
name_derived_class='', aliases=[...])}
411411
"""
412412
if self._map_output_pin_spec is None:
413413
self._map_output_pin_spec = {}

0 commit comments

Comments
 (0)