Skip to content

Commit

Permalink
Merge pull request #201 from jhj0517/fix/translation-path
Browse files Browse the repository at this point in the history
Fix translation output path
  • Loading branch information
jhj0517 authored Jul 9, 2024
2 parents 2b4b831 + f513345 commit ca5f027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, args):
output_dir=os.path.join(self.args.output_dir, "translations")
)
self.deepl_api = DeepLAPI(
output_dir=self.args.output_dir
output_dir=os.path.join(self.args.output_dir, "translations")
)

def init_whisper(self):
Expand Down

0 comments on commit ca5f027

Please sign in to comment.