Skip to content

Commit 9c918fa

Browse files
committed
trying to make formatter happy
1 parent 53a38e9 commit 9c918fa

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tests/test_prediction.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -561,9 +561,10 @@ def test_default_category_pred_upload_update(model_run):
561561

562562
# Copy so we don't modify the original.
563563
prediction_update_params = dict(TEST_DEFAULT_CATEGORY_PREDICTIONS[1])
564-
prediction_update_params["reference_id"] = (
565-
TEST_DEFAULT_CATEGORY_PREDICTIONS[0]["reference_id"]
566-
)
564+
prediction_update_params[
565+
"reference_id"
566+
] = TEST_DEFAULT_CATEGORY_PREDICTIONS[0]["reference_id"]
567+
567568

568569
prediction_update = CategoryPrediction.from_json(prediction_update_params)
569570
response = model_run.predict(annotations=[prediction_update], update=True)
@@ -588,9 +589,9 @@ def test_default_category_pred_upload_ignore(model_run):
588589

589590
# Copy so we don't modify the original.
590591
prediction_update_params = dict(TEST_DEFAULT_CATEGORY_PREDICTIONS[1])
591-
prediction_update_params["reference_id"] = (
592-
TEST_DEFAULT_CATEGORY_PREDICTIONS[0]["reference_id"]
593-
)
592+
prediction_update_params[
593+
"reference_id"
594+
] = TEST_DEFAULT_CATEGORY_PREDICTIONS[0]["reference_id"]
594595

595596
prediction_update = CategoryPrediction.from_json(prediction_update_params)
596597
# Default behavior is ignore.

0 commit comments

Comments
 (0)