From 37a74fb660028103cf22dff4d88bda88546f160c Mon Sep 17 00:00:00 2001 From: Jonathan Sick Date: Tue, 10 Sep 2024 15:11:19 -0400 Subject: [PATCH] wip: add print --- src/noteburst/handlers/v1/models.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/noteburst/handlers/v1/models.py b/src/noteburst/handlers/v1/models.py index 483287b..9e687d6 100644 --- a/src/noteburst/handlers/v1/models.py +++ b/src/noteburst/handlers/v1/models.py @@ -197,6 +197,10 @@ async def from_job_metadata( if job_result and not job_result.success: try: # Attempt to access the result to raise any exceptions + print( # noqa: T201 + "Attempting to access " + f"job_result.result {job_result.result}" + ) job_result.result # noqa: B018 noteburst_error = None except NbexecTaskTimeoutError as e: