Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8952058

Browse files
vedgarbusunkim96
authored andcommitted
docs: Correct response access (googleapis#750)
1 parent 360fcfb commit 8952058

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ You can access the data like this:
123123

124124
```python
125125
print('Num 5 cent stamps: %d'.format(response['count']))
126-
print('First stamp name: %s'.format(['items'][0]['name']))
126+
print('First stamp name: %s'.format(response['items'][0]['name']))
127127
```
128128

129129
## Finding information about the APIs

0 commit comments

Comments
 (0)