Skip to content

Commit

Permalink
Fix read_transcription function indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyhuy committed Apr 7, 2024
1 parent 37b0e32 commit 5d58736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transcribe_me/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def read_transcription(output_file: str) -> str:
"""
with open(output_file, "r", encoding="utf-8") as file:
transcription = file.read()
return transcription
return transcription

def main():
parser = argparse.ArgumentParser(description="Transcribe audio files and generate summaries.")
Expand Down

0 comments on commit 5d58736

Please sign in to comment.