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

Skip to content

Commit 16448bc

Browse files
authored
docs: convert print statement to function (googleapis#988)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) Fixes googleapis#987 🦕
1 parent f76e403 commit 16448bc

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
@@ -98,7 +98,7 @@ The response is a Python object built from the JSON response sent by the API ser
9898
```python
9999
import json
100100
...
101-
print json.dumps(response, sort_keys=True, indent=4)
101+
print(json.dumps(response, sort_keys=True, indent=4))
102102
```
103103

104104
For example, if the printed JSON is the following:

0 commit comments

Comments
 (0)