File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33'''
44
55from __future__ import annotations
6- from typing import Dict , List
6+ from typing import Any , Dict , List
77
88from uuid import UUID
99from logging import debug
@@ -95,7 +95,7 @@ def get_result_descriptor(self) -> ResultDescriptor:
9595
9696 return self .__result_descriptor
9797
98- def workflow_definition (self ) -> Dict [str , str ]:
98+ def workflow_definition (self ) -> Dict [str , Any ]:
9999 '''Return the workflow definition for this workflow'''
100100
101101 session = get_session ()
@@ -395,7 +395,7 @@ def get_provenance(self) -> List[ProvenanceOutput]:
395395 return [ProvenanceOutput .from_response (item ) for item in response ]
396396
397397
398- def register_workflow (workflow : Dict [str , str ]) -> Workflow :
398+ def register_workflow (workflow : Dict [str , Any ]) -> Workflow :
399399 '''
400400 Register a workflow in Geo Engine and receive a `WorkflowId`
401401 '''
You can’t perform that action at this time.
0 commit comments