Skip to content

Commit 9c53eaa

Browse files
committed
Merge pull request tylertreat#53 from ilikedata/master
Quoting dictionary keys in schema generation sample
2 parents f7ca89f + 140cce5 commit 9c53eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ client.patch_dataset('mydataset', friendly_name="mon Dataset") # friendly_name c
231231
```python
232232
from bigquery import schema_from_record
233233

234-
schema_from_record({id:123, posts: [{id:123, text: "tihs is a post"}], username: "bob"})
234+
schema_from_record({"id":123, "posts": [{"id":123, "text": "tihs is a post"}], "username": "bob"})
235235
```
236236

237237
# Caveats

0 commit comments

Comments
 (0)