Skip to content

Commit

Permalink
fix ruff error
Browse files Browse the repository at this point in the history
  • Loading branch information
akotlar committed Mar 14, 2024
1 parent ef4c79a commit 5bbf225
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions python/python/bystro/ancestry/tests/test_listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
SubmittedJobMessage,
AncestryJobCompleteMessage,
AncestryResults,
AncestryModels
AncestryModels,
)
from bystro.ancestry.tests.test_inference import (
ANCESTRY_MODEL,
Expand All @@ -34,7 +34,10 @@ def test_submit_fn():


def test_handler_fn_happy_path(mocker, tmpdir):
mocker.patch("bystro.ancestry.listener._get_models_from_s3", return_value=AncestryModels(ANCESTRY_MODEL, ANCESTRY_MODEL))
mocker.patch(
"bystro.ancestry.listener._get_models_from_s3",
return_value=AncestryModels(ANCESTRY_MODEL, ANCESTRY_MODEL),
)
dosage_path = "some_dosage.feather"
f1 = tmpdir.join(dosage_path)

Expand Down

0 comments on commit 5bbf225

Please sign in to comment.