diff --git a/build_videos.py b/build_videos.py index c39f9fe..9cc1a5c 100644 --- a/build_videos.py +++ b/build_videos.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import database import youtube_short import transcribe_video diff --git a/migrate_sql1.py b/migrate_sql1.py index d77f9c2..dd16924 100644 --- a/migrate_sql1.py +++ b/migrate_sql1.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import sqlite3 # Connect to your database file diff --git a/twitch_chat_vod.py b/twitch_chat_vod.py index 6b388d7..5becb8b 100644 --- a/twitch_chat_vod.py +++ b/twitch_chat_vod.py @@ -1,5 +1,5 @@ +#!/usr/bin/env python3 import os - import linux def combine_twitch_vod_and_chat(vod_path: str, layout: str = "side-by-side") -> bool: diff --git a/youtube_short.py b/youtube_short.py index 6619a89..2d0c153 100755 --- a/youtube_short.py +++ b/youtube_short.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -import argparse -import sys import linux import tempfile from pathlib import Path