You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseValueError("Did not understand schema: {}".format(provided_schema_name))
427
427
if (dataset_id_from_schemaanddataset_id_from_tableand
428
428
dataset_id_from_schema!=dataset_id_from_table):
429
-
raiseValueError("dataset_id specified in schema and table_name disagree: got {} in schema, and {} in table_name".format(dataset_id_from_schema, dataset_id_from_table))
429
+
raiseValueError(
430
+
"dataset_id specified in schema and table_name disagree: "
431
+
"got {} in schema, and {} in table_name".format(
432
+
dataset_id_from_schema, dataset_id_from_table
433
+
)
434
+
)
430
435
if (project_id_from_schemaandproject_id_from_tableand
431
436
project_id_from_schema!=project_id_from_table):
432
-
raiseValueError("project_id specified in schema and table_name disagree: got {} in schema, and {} in table_name".format(project_id_from_schema, project_id_from_table))
437
+
raiseValueError(
438
+
"project_id specified in schema and table_name disagree: "
0 commit comments