From bf3c29803461e8853beb520b70a3c090b737fc0e Mon Sep 17 00:00:00 2001 From: Marty Oehme <marty.oehme@gmail.com> Date: Sat, 18 Jan 2025 14:34:26 +0100 Subject: [PATCH] Format --- summarize.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/summarize.py b/summarize.py index d3b6528..73f1432 100755 --- a/summarize.py +++ b/summarize.py @@ -90,9 +90,7 @@ def rm_dir(dir: Path | str) -> None: type=str, help="Use custom prompt.", ) -def cli( - file_path: Path | str, json_transcript: bool, youtube: bool, prompt: str -): +def cli(file_path: Path | str, json_transcript: bool, youtube: bool, prompt: str): """Provide summary for a file at the specified path or a youtube video at the specified url.""" content = "" @@ -110,10 +108,12 @@ def cli( if json_transcript or youtube: content = extract_transcript_contents(content) + print(f"DEBUG: content = {content}") if not content: print("Please provide a file with valid content.") print(summarize_text_file(content, prompt)) + if __name__ == "__main__": cli()