Skip to content

Commit

Permalink
refactor: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
msto committed Sep 23, 2024
1 parent 47eb730 commit f07cd2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion prymer/api/picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from prymer.api.primer_pair import PrimerPair
from prymer.api.span import Span
from prymer.ntthal import NtThermoAlign
from prymer.offtarget.offtarget_detector import OffTargetDetector
from prymer.offtarget import OffTargetDetector


@dataclass(frozen=True, init=True, slots=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/api/test_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from prymer.api.span import Span
from prymer.api.span import Strand
from prymer.ntthal import NtThermoAlign
from prymer.offtarget.offtarget_detector import OffTargetDetector
from prymer.offtarget import OffTargetDetector


@pytest.fixture
Expand Down
4 changes: 2 additions & 2 deletions tests/offtarget/test_offtarget.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
from prymer.api.primer_pair import PrimerPair
from prymer.api.span import Span
from prymer.api.span import Strand
from prymer.offtarget import OffTargetDetector
from prymer.offtarget import OffTargetResult
from prymer.offtarget.bwa import BwaHit
from prymer.offtarget.bwa import BwaResult
from prymer.offtarget.offtarget_detector import OffTargetDetector
from prymer.offtarget.offtarget_detector import OffTargetResult


def _build_detector(
Expand Down

0 comments on commit f07cd2f

Please sign in to comment.