Skip to content

Commit a5ffde0

Browse files
committed
Fix bad type-hint in docstring of Python operator classes
1 parent b1d1a25 commit a5ffde0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ansys/dpf/core/operators/operator.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ from ansys.dpf.core.server_types import AnyServerType
2929
class {{class_name}}(Operator):
3030
r"""{{{docstring}}}
3131

32-
Parameters
33-
----------
32+
Inputs
33+
------
3434
{{#input_pins}}
3535
{{#optional}}
3636
{{name}}:{{#types_for_docstring}} {{types_for_docstring}},{{/types_for_docstring}} optional
@@ -43,7 +43,7 @@ class {{class_name}}(Operator):
4343
{{/document_pin_docstring}}
4444
{{/input_pins}}
4545

46-
Returns
46+
Outputs
4747
-------
4848
{{#output_pins}}
4949
{{#optional}}

0 commit comments

Comments
 (0)