Skip to content

Commit 4886998

Browse files
committed
fix: comment
1 parent 1d64486 commit 4886998

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ansys/dpf/core/operators/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ def build_operator(
229229
for input_pin in input_pins:
230230
annotation_import_types.update(input_pin["docstring_types"])
231231
for output_pin in output_pins:
232-
if output_pin["multiple_types"]: # pins with multiple types cannot be annotated
232+
# Output pins with multiple types can't be annotated with current operators design
233+
if output_pin["multiple_types"]:
233234
continue
234235
annotation_import_types.update(output_pin["docstring_types"])
235236
annotation_import_list = []

0 commit comments

Comments
 (0)