Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
akihikokuroda committed Oct 27, 2023
1 parent 20b875d commit 3867e3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/quantum_serverless/core/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ def list(self, **kwargs) -> List["Job"]:
def run(self, program: Program, arguments: Optional[Dict[str, Any]] = None):
if program.dependencies:
for dependency in program.dependencies:
subprocess.check_call([sys.executable, '-m', 'pip', 'install', dependency])
subprocess.check_call(
[sys.executable, '-m', 'pip', 'install', dependency]
)
arguments = arguments or {}
env_vars = {
**(program.env_vars or {}),
Expand Down

0 comments on commit 3867e3d

Please sign in to comment.