isayahc commited on
Commit
fdcda20
Β·
1 Parent(s): aa08b5f

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -0
utils.py CHANGED
@@ -13,6 +13,7 @@ def download_from_google_drive(file_id: str, destination: Optional[str] = None)
13
  """
14
  url = f'https://drive.google.com/uc?id={file_id}'
15
  output = destination if destination else f"{file_id}.file"
 
16
  gdown.download(url, output, quiet=False)
17
 
18
  def unzip_file(zip_path: str, extract_to: Optional[str] = None) -> None:
 
13
  """
14
  url = f'https://drive.google.com/uc?id={file_id}'
15
  output = destination if destination else f"{file_id}.file"
16
+ print(output)
17
  gdown.download(url, output, quiet=False)
18
 
19
  def unzip_file(zip_path: str, extract_to: Optional[str] = None) -> None: