eusholli commited on
Commit
9344ba5
·
1 Parent(s): 0ecac1d

fix fixed string formatting error

Browse files
Files changed (1) hide show
  1. video_utils.py +2 -2
video_utils.py CHANGED
@@ -61,8 +61,8 @@ def try_cobalt_api(yt_url, download_file):
61
  with open(download_file, 'wb') as file:
62
  file.write(video_response.content)
63
 
64
- print(f"Video downloaded successfully using Cobalt API: {
65
- download_file}")
66
  return True
67
  else:
68
  print(f"Cobalt API Error: {data.get('text', 'Unknown error')}")
 
61
  with open(download_file, 'wb') as file:
62
  file.write(video_response.content)
63
 
64
+ print(f"Video downloaded successfully using Cobalt API: "
65
+ f"{download_file}")
66
  return True
67
  else:
68
  print(f"Cobalt API Error: {data.get('text', 'Unknown error')}")