File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,11 @@ def validated_gcs_bucket_name(self) -> str:
57
57
58
58
else :
59
59
# Open the key to get the project id
60
- with open (self .google_credentials_file ) as open_resource :
61
- creds = json .load (open_resource )
60
+ with open (
61
+ self .google_credentials_file ,
62
+ encoding = "utf-8" ,
63
+ ) as open_resource :
64
+ creds = json .load (open_resource , strict = False )
62
65
project_id = creds ["project_id" ]
63
66
64
67
# Remove all files in bucket
@@ -118,8 +121,11 @@ def validated_gcs_bucket_name(self) -> str:
118
121
119
122
else :
120
123
# Open the key to get the project id
121
- with open (self .google_credentials_file ) as open_resource :
122
- creds = json .load (open_resource )
124
+ with open (
125
+ self .google_credentials_file ,
126
+ encoding = "utf-8" ,
127
+ ) as open_resource :
128
+ creds = json .load (open_resource , strict = False )
123
129
project_id = creds ["project_id" ]
124
130
125
131
# Remove all files in bucket
You can’t perform that action at this time.
0 commit comments