diff --git a/src/argowrapper/engine/argo_engine.py b/src/argowrapper/engine/argo_engine.py index a663690..2c9aa12 100644 --- a/src/argowrapper/engine/argo_engine.py +++ b/src/argowrapper/engine/argo_engine.py @@ -84,6 +84,8 @@ def _get_archived_workflow_details_dict(self, uid: str) -> Dict: Raises a argo_workflows.exceptions.NotFoundException if the workflow uid cannot be found as an archived workflow """ + # TODO delete this before committing to master + print(f"Looking for UID: {uid}") # good to know: this one by default already includes some of the necessary fields like metadata.annotations,metadata.creationTimestamp ...and unfortunately we can't control the fields like in the call to get_workflow() above with "fields" parameter... return self.archive_api_instance.get_archived_workflow( uid=uid, _check_return_type=False