Skip to content
Snippets Groups Projects
Commit e3bcd6ed authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[tests] Minor QA improvements

parent 4933c30b
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ def save_to_json(
train_files: list[str],
test_files: list[str],
validation_files: list[str],
output_file: str,
output_file: pathlib.Path,
organ_1_id: str,
):
data = {
......@@ -84,7 +84,7 @@ def save_to_json(
],
}
with pathlib.Path(output_file).open("w") as json_file:
with output_file.open("w") as json_file:
json.dump(data, json_file, indent=2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment