Skip to content

Commit 0e6397b

Browse files
pre-commit-ci[bot]andrii-i
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e8316d5 commit 0e6397b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jupyter_scheduler/scheduler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,9 @@ def create_job(self, model: CreateJob) -> str:
512512
input_file_path = os.path.join(self.root_dir, model.input_uri)
513513
mlflow.log_artifact(input_file_path, "input")
514514

515-
mlflow_run = mlflow_client.create_run(experiment_id=experiment_id, run_name=model.input_filename)
515+
mlflow_run = mlflow_client.create_run(
516+
experiment_id=experiment_id, run_name=model.input_filename
517+
)
516518
model.mlflow_run_id = mlflow_run.info.run_id
517519

518520
job = Job(**model.dict(exclude_none=True, exclude={"input_uri"}))

0 commit comments

Comments
 (0)