Skip to content

Commit

Permalink
Additional typing to enable more IDE autocompletion
Browse files Browse the repository at this point in the history
  • Loading branch information
mluypaert committed Mar 15, 2024
1 parent ef545b1 commit 5df655b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/seq_retrieval/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def main(seq_id: str, seq_strand: str, seq_regions: List, fasta_file_url: str, r

data_file_mover.set_local_cache_reuse(reuse_local_cache)

seq_region_objs = []
seq_region_objs: List[SeqRegion] = []
for region in seq_regions:
seq_region_objs.append(SeqRegion(seq_id=seq_id, start=region['start'], end=region['end'], strand=seq_strand,
fasta_file_url=fasta_file_url))
Expand Down

0 comments on commit 5df655b

Please sign in to comment.