Skip to content
Snippets Groups Projects

Add original transcript id to output transcripts

Merged Larissa Glass requested to merge 12-hotfix-transcripts-output into main
2 files
+ 10
1
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 4
0
@@ -46,6 +46,10 @@ def output_filename(filename: str) -> str:
outfile = "generated_" + filepath.name
else:
raise NotImplementedError()
if Path(outfile).exists():
raise FileExistsError(f"The output file {outfile} already exists.")
return outfile
Loading