File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -150,19 +150,11 @@ def init(
150
150
151
151
This may be used on the __init__ method of the workflow class to specify
152
152
that it accepts the same workflow input arguments as the ``@workflow.run``
153
- method. It may not be used on any other method.
154
-
155
- If used, the workflow will be instantiated as
156
- ``MyWorkflow(**workflow_input_args)``. If not used, the workflow will be
157
- instantiated as ``MyWorkflow()``.
158
-
159
- Note that the ``@workflow.run`` method is always called as
160
- ``my_workflow.my_run_method(**workflow_input_args)``. If you use the
161
- ``@workflow.init`` decorator, the parameter list of your __init__ and
162
- ``@workflow.run`` methods must be identical.
153
+ method. If used, the parameters of your __init__ and ``@workflow.run``
154
+ methods must be identical.
163
155
164
156
Args:
165
- init_fn: The __init__function to decorate.
157
+ init_fn: The __init__ method to decorate.
166
158
"""
167
159
if init_fn .__name__ != "__init__" :
168
160
raise ValueError ("@workflow.init may only be used on the __init__ method" )
You can’t perform that action at this time.
0 commit comments