Skip to content

Commit

Permalink
Merge pull request #385 from CQCL/fix-typo-in-exception
Browse files Browse the repository at this point in the history
fix: Correct typo in error message
  • Loading branch information
johnchildren authored Mar 13, 2024
2 parents d5d92e3 + fcb39f9 commit ddaad28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytket/extensions/quantinuum/backends/api_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def retrieve_job(
"""
jr = self.retrieve_job_status(job_id, use_websocket)
if not jr:
raise QuantinuumAPIError(f"Unable to retrive job {job_id}")
raise QuantinuumAPIError(f"Unable to retrieve job {job_id}")
if "status" in jr and jr["status"] in self.JOB_DONE:
return jr

Expand Down

0 comments on commit ddaad28

Please sign in to comment.