Spaces:
Sleeping
Sleeping
Fix: Import Dict and Any from typing for app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ import subprocess
|
|
6 |
import re
|
7 |
import shutil # Added for rmtree
|
8 |
import modal
|
|
|
9 |
|
10 |
def is_youtube_url(url_string: str) -> bool:
|
11 |
"""Checks if the given string is a YouTube URL."""
|
|
|
6 |
import re
|
7 |
import shutil # Added for rmtree
|
8 |
import modal
|
9 |
+
from typing import Dict, Any # Added for type hinting
|
10 |
|
11 |
def is_youtube_url(url_string: str) -> bool:
|
12 |
"""Checks if the given string is a YouTube URL."""
|