Skip to content

Commit

Permalink
remove return variable
Browse files Browse the repository at this point in the history
Signed-off-by: A.M. Santana <[email protected]>
  • Loading branch information
anthony-santana committed Jul 18, 2023
1 parent 9fd3e06 commit 86815b5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,7 @@ bool IonQServerHelper::jobIsDone(ServerMessage &getJobResponse) {
"account for more information.");

// Return whether the job is completed
auto ret = jobs[0].at("status").get<std::string>() == "completed";
return ret;
return jobs[0].at("status").get<std::string>() == "completed";
}

// Process the results from a job
Expand Down

0 comments on commit 86815b5

Please sign in to comment.