Skip to content

Commit 5435bb6

Browse files
committed
Fix indent in operator.mustache
1 parent 27c26fa commit 5435bb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class {{class_name}}(Operator):
8282
{{/outputs}}
8383
"""
8484

85-
def __init__(self, {{#input_pins}}{{name}}=None, {{/input_pins}}config=None, server=None, {{#input_pins}}{{#aliases}}{{{name}}}=None, {{/aliases}}{{/input_pins}}):
85+
def __init__(self, {{#input_pins}}{{name}}=None, {{/input_pins}}config=None, server=None):
8686
super().__init__(name="{{operator_name}}", config=config, server=server)
8787
self._inputs = Inputs{{capital_class_name}}(self)
8888
self._outputs = Outputs{{capital_class_name}}(self)

0 commit comments

Comments
 (0)