Skip to content

Commit

Permalink
missing typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Aug 29, 2024
1 parent 6f8c117 commit 40f7ac3
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ def __init__(

def get_files_to_deliver(self, case_id: str) -> DeliveryFiles:
case = self._get_case(case_id)
fastq_files = self._fetch_files(FetchFastqDeliveryFilesService, case_id)
analysis_files = self._fetch_files(FetchAnalysisDeliveryFilesService, case_id)
fastq_files: DeliveryFiles = self._fetch_files(
service_class=FetchFastqDeliveryFilesService, case_id=case_id
)
analysis_files: DeliveryFiles = self._fetch_files(
service_class=FetchAnalysisDeliveryFilesService, case_id=case_id
)
delivery_data = DeliveryMetaData(
customer_internal_id=case.customer.internal_id, ticket_id=case.latest_ticket
)
Expand Down

0 comments on commit 40f7ac3

Please sign in to comment.