Fix typing issue

This commit is contained in:
Kevin Wu
2022-09-11 21:53:26 -07:00
parent f648cfaccf
commit b8e61c19f9

View File

@@ -46,7 +46,7 @@ def write_fasta(sequences: Dict[str, str], out_fname: str):
sink.write(segment + "\n")
def run_omegafold(input_fasta: str, outdir: str, gpu: int) -> str:
def run_omegafold(input_fasta: str, outdir: str, gpu: int):
"""
Runs omegafold on the given fasta file
"""