Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
korgan00 committed Dec 11, 2024
1 parent 1760498 commit 4ad2065
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion client/qiskit_serverless/core/clients/local_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ def run(
json.dump(arguments, f, cls=QiskitObjectsEncoder)

with Popen(
["python", os.path.join(saved_program.working_dir, saved_program.entrypoint)],
[
"python",
os.path.join(saved_program.working_dir, saved_program.entrypoint)
],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True,
Expand Down

0 comments on commit 4ad2065

Please sign in to comment.