Skip to content

Commit

Permalink
fix typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Jul 29, 2024
1 parent aca1172 commit a9aa3fa
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from cg.services.post_processing.abstract_classes import (
PostProcessingStoreService,
PostProcessingDataTransferService,
)
from cg.services.post_processing.pacbio.data_transfer_service.data_transfer_service import (
PacBioDataTransferService,
)
from cg.services.post_processing.pacbio.data_transfer_service.dto import (
PacBioDTOs,
Expand All @@ -14,7 +16,7 @@


class PacBioStoreService(PostProcessingStoreService):
def __init__(self, store: Store, data_transfer_service: PostProcessingDataTransferService):
def __init__(self, store: Store, data_transfer_service: PacBioDataTransferService):
self.store = store
self.data_transfer_service = data_transfer_service

Expand Down

0 comments on commit a9aa3fa

Please sign in to comment.