Skip to content

Commit

Permalink
Fix case when not passing output_formats
Browse files Browse the repository at this point in the history
  • Loading branch information
AliOsm committed Jun 28, 2024
1 parent bc13e8c commit fa50f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tafrigh/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(
output_dir: str,
):
if 'all' in output_formats:
output_formats = list(TranscriptType)
output_formats = [transcript_type.value for transcript_type in TranscriptType]

if TranscriptType.ALL in output_formats:
output_formats.remove(str(TranscriptType.ALL))
Expand Down

0 comments on commit fa50f00

Please sign in to comment.