jomasego commited on
Commit
b225bec
·
1 Parent(s): 19947b7

Fix: Import Dict and Any from typing for app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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."""