SIENTIAPDE-1241: Formatted files

This commit is contained in:
Kou-Kinoshita
2025-10-29 11:55:03 -03:00
parent e8250d8dd7
commit 5e763a8a64
3 changed files with 32 additions and 23 deletions

View File

@@ -12,6 +12,7 @@ Prerequisites:
- Temporal server reachable without TLS on TEMPORAL_HOST / TEMPORAL_NAMESPACE.
- Python dependencies installed (see requirements.txt / requirements-dev.txt).
"""
from __future__ import annotations
import asyncio
@@ -213,14 +214,16 @@ def main() -> None:
print(f'Failed to start Temporal workflow: {exc}', file=sys.stderr)
sys.exit(1)
print(json.dumps(
{
'experiment_run_id': experiment_run_id,
's3_object_name': uploaded_file_name,
'workflow_id': workflow_id,
},
indent=2,
))
print(
json.dumps(
{
'experiment_run_id': experiment_run_id,
's3_object_name': uploaded_file_name,
'workflow_id': workflow_id,
},
indent=2,
)
)
if __name__ == '__main__':