Skip to content

Commit 296f55d

Browse files
committed
[batch] Fix render_job() args
1 parent 3b02b5d commit 296f55d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

batch/entrypoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import yaml
1212

1313

14-
def render_job(name: str, subscription: str, spec: str, job_input: str) -> V1Job:
14+
def render_job(name: str, spec: str, job_input: str) -> V1Job:
1515
metadata = V1ObjectMeta(name=name)
1616
spec = spec.format(JOB_INPUT=job_input)
1717
spec = yaml.safe_load(spec)

0 commit comments

Comments
 (0)