File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -436,6 +436,6 @@ valid-metaclass-classmethod-first-arg=mcs
436
436
437
437
# Exceptions that will emit a warning when being caught. Defaults to
438
438
# "Exception"
439
- overgeneral-exceptions =StandardError,
440
- Exception,
441
- BaseException
439
+ overgeneral-exceptions =builtins. StandardError,
440
+ builtins. Exception,
441
+ builtins. BaseException
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ def download_file_from_google_drive(g_url: str,
100
100
os .makedirs (root , exist_ok = True )
101
101
102
102
url = "https://drive.google.com/uc"
103
- params = dict ( id = file_id , export = " download")
103
+ params = { "id" : file_id , " export" : " download"}
104
104
with requests .Session () as session :
105
105
response = session .get (url , params = params , stream = True )
106
106
You can’t perform that action at this time.
0 commit comments