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(f"Did not understand schema: {provided_schema_name}")
390
-
# TODO: Get a test for an else statement here
389
+
raiseValueError("Did not understand schema: {}".format(provided_schema_name))
391
390
if (dataset_id_from_schemaanddataset_id_from_tableand
392
391
dataset_id_from_schema!=dataset_id_from_table):
393
-
raiseValueError(f"dataset_id specified in schema and table_name disagree: got {dataset_id_from_schema} in schema, and {dataset_id_from_table} in table_name")
392
+
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))
394
393
if (project_id_from_schemaandproject_id_from_tableand
395
394
project_id_from_schema!=project_id_from_table):
396
-
raiseValueError(f"project_id specified in schema and table_name disagree: got {project_id_from_schema} in schema, and {project_id_from_table} in table_name")
395
+
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))
0 commit comments