Skip to content

Commit 8a0b1ae

Browse files
Further formatting
1 parent 9bf2fbf commit 8a0b1ae

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/integration/mal_and_mea/test_mea_annotation_import.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,16 @@ def test_create_from_objects(model_run_annotation_groups, object_predictions):
4040
assert_file_content(annotation_import.input_file_url, object_predictions)
4141

4242

43-
def test_create_from_local_file(tmp_path, model_run_annotation_groups, object_predictions):
43+
def test_create_from_local_file(tmp_path, model_run_annotation_groups,
44+
object_predictions):
4445
name = str(uuid.uuid4())
4546
file_name = f"{name}.ndjson"
4647
file_path = tmp_path / file_name
4748
with file_path.open("w") as f:
4849
ndjson.dump(object_predictions, f)
4950

50-
annotation_import = model_run_annotation_groups.add_predictions(name=name,
51-
predictions=str(file_path))
51+
annotation_import = model_run_annotation_groups.add_predictions(
52+
name=name, predictions=str(file_path))
5253

5354
assert annotation_import.model_run_id == model_run_annotation_groups.uid
5455
check_running_state(annotation_import, name)

0 commit comments

Comments
 (0)