Skip to content

Commit 8ccda0d

Browse files
Add tools helper function
1 parent d18135b commit 8ccda0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/axiomatic/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def tool_exec(self, tool: str, code: str, poll_interval: int = 3, debug: bool =
114114
code=code_string,
115115
)
116116
if output.is_success is True:
117-
job_id: str = output.job_id
117+
job_id = str(output.job_id)
118118
result = self._ax_client.tools.status(job_id=job_id)
119119
if debug:
120120
print(f"job_id: {job_id}")

0 commit comments

Comments
 (0)