Skip to content

Commit

Permalink
fixed wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
ayobi committed Oct 24, 2024
1 parent 70cf54b commit 610509b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions microsetta_private_api/admin/sample_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from microsetta_private_api.repo.transaction import Transaction
from microsetta_private_api.repo.admin_repo import AdminRepo
from microsetta_private_api.repo.survey_template_repo import SurveyTemplateRepo
from microsetta_private_api.repo.vioscreen_repo import VioscreenRepo
from microsetta_private_api.repo.vioscreen_repo import VioscreenSessionRepo
from werkzeug.exceptions import NotFound


Expand Down Expand Up @@ -40,7 +40,7 @@ def per_sample(project, barcodes, strip_sampleid):
admin_repo = AdminRepo(t)
sample_repo = SampleRepo(t)
template_repo = SurveyTemplateRepo(t)
vs_repo = VioscreenRepo(t)
vs_repo = VioscreenSessionRepo(t)

# all associated projects returned for each barcode,
# so no universal project needed
Expand Down

0 comments on commit 610509b

Please sign in to comment.