Skip to content

Commit d3f4fb5

Browse files
committed
Correcting change to schema made by auto-rebase
1 parent fe5c461 commit d3f4fb5

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

pandas_gbq/gbq.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -585,12 +585,7 @@ def schema(self, dataset_id, table_id):
585585
'type': field_remote['type']}
586586
for field_remote in remote_schema['fields']]
587587

588-
fields_remote = set([json.dumps(field_remote)
589-
for field_remote in remote_fields])
590-
fields_local = set(json.dumps(field_local)
591-
for field_local in schema['fields'])
592-
593-
return fields_remote == fields_local
588+
return remote_fields
594589
except HttpError as ex:
595590
self.process_http_error(ex)
596591

0 commit comments

Comments
 (0)