@@ -83,7 +83,8 @@ def _test_imports():
83
83
from oauth2client .client import GoogleCredentials # noqa
84
84
from oauth2client .client import OAuth2WebServerFlow # noqa
85
85
from oauth2client .client import AccessTokenRefreshError # noqa
86
- from oauth2client .client import ApplicationDefaultCredentialsError # noqa
86
+ from oauth2client .client import \
87
+ ApplicationDefaultCredentialsError # noqa
87
88
88
89
from oauth2client .file import Storage # noqa
89
90
from oauth2client .tools import run_flow # noqa
@@ -137,7 +138,8 @@ def _test_imports():
137
138
oauth2client_v1 = False
138
139
139
140
try :
140
- from oauth2client .service_account import ServiceAccountCredentials # noqa
141
+ from oauth2client .service_account import \
142
+ ServiceAccountCredentials # noqa
141
143
except ImportError :
142
144
oauth2client_v2 = False
143
145
@@ -159,7 +161,8 @@ def clean_gbq_environment(private_key=None):
159
161
for i in range (1 , 10 ):
160
162
if DATASET_ID + str (i ) in dataset .datasets ():
161
163
dataset_id = DATASET_ID + str (i )
162
- table = gbq ._Table (PROJECT_ID , dataset_id , private_key = private_key )
164
+ table = gbq ._Table (PROJECT_ID , dataset_id ,
165
+ private_key = private_key )
163
166
for j in range (1 , 20 ):
164
167
if TABLE_ID + str (j ) in dataset .tables (dataset_id ):
165
168
table .delete (TABLE_ID + str (j ))
0 commit comments