Unverified Commit ea6be124 authored by Vasilis Vryniotis's avatar Vasilis Vryniotis Committed by GitHub
Browse files

Ignore missing report warning for requests (#4011)

parent a00c735d
...@@ -201,7 +201,7 @@ def download_file_from_google_drive(file_id: str, root: str, filename: Optional[ ...@@ -201,7 +201,7 @@ def download_file_from_google_drive(file_id: str, root: str, filename: Optional[
md5 (str, optional): MD5 checksum of the download. If None, do not check md5 (str, optional): MD5 checksum of the download. If None, do not check
""" """
# Based on https://stackoverflow.com/questions/38511444/python-download-files-from-google-drive-using-url # Based on https://stackoverflow.com/questions/38511444/python-download-files-from-google-drive-using-url
import requests import requests # type: ignore
url = "https://docs.google.com/uc?export=download" url = "https://docs.google.com/uc?export=download"
root = os.path.expanduser(root) root = os.path.expanduser(root)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment