@@ -1238,7 +1238,7 @@ def _generate_bq_schema(df, default_type="STRING"):
12381238 issues in the default schema generation. Now that individual columns can
12391239 be overridden: https://github.com/pydata/pandas-gbq/issues/218, this
12401240 method can be removed after there is time to migrate away from this
1241- method. """
1241+ method."""
12421242 from pandas_gbq import schema
12431243
12441244 return schema .generate_bq_schema (df , default_type = default_type )
@@ -1264,7 +1264,7 @@ def __init__(
12641264 )
12651265
12661266 def exists (self , table_id ):
1267- """ Check if a table exists in Google BigQuery
1267+ """Check if a table exists in Google BigQuery
12681268
12691269 Parameters
12701270 ----------
@@ -1288,7 +1288,7 @@ def exists(self, table_id):
12881288 self .process_http_error (ex )
12891289
12901290 def create (self , table_id , schema ):
1291- """ Create a table in Google BigQuery given a table and schema
1291+ """Create a table in Google BigQuery given a table and schema
12921292
12931293 Parameters
12941294 ----------
@@ -1330,7 +1330,7 @@ def create(self, table_id, schema):
13301330 self .process_http_error (ex )
13311331
13321332 def delete (self , table_id ):
1333- """ Delete a table in Google BigQuery
1333+ """Delete a table in Google BigQuery
13341334
13351335 Parameters
13361336 ----------
@@ -1370,7 +1370,7 @@ def __init__(
13701370 )
13711371
13721372 def exists (self , dataset_id ):
1373- """ Check if a dataset exists in Google BigQuery
1373+ """Check if a dataset exists in Google BigQuery
13741374
13751375 Parameters
13761376 ----------
@@ -1393,7 +1393,7 @@ def exists(self, dataset_id):
13931393 self .process_http_error (ex )
13941394
13951395 def create (self , dataset_id ):
1396- """ Create a dataset in Google BigQuery
1396+ """Create a dataset in Google BigQuery
13971397
13981398 Parameters
13991399 ----------
0 commit comments