File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ def _raw_execute(self, **kwargs) -> Any:
380380 single_instance_inputs [k ] = kwargs [k ]
381381 try :
382382 o = self ._run_task .execute (** single_instance_inputs )
383- # For Continer task, it will return the LiteralMap. We need to convert it to native
383+ # For Container task, it will return the LiteralMap. We need to convert it to native
384384 # type here.
385385 if isinstance (o , _literal_models .LiteralMap ):
386386 vals = [Promise (var , o .literals [var ]) for var in o .literals .keys ()]
@@ -437,7 +437,7 @@ def map_task(
437437
438438
439439def array_node_map_task (
440- task_function : PythonFunctionTask ,
440+ task_function : PythonFunctionTask | ContainerTask ,
441441 concurrency : Optional [int ] = None ,
442442 # TODO why no min_successes?
443443 min_success_ratio : float = 1.0 ,
You can’t perform that action at this time.
0 commit comments