Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
docs: convert print statement to function (#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 #987 馃
  • Loading branch information
atenni committed Aug 31, 2020
1 parent f76e403 commit 16448bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/start.md
Expand Up @@ -98,7 +98,7 @@ The response is a Python object built from the JSON response sent by the API ser
```python
import json
...
print json.dumps(response, sort_keys=True, indent=4)
print(json.dumps(response, sort_keys=True, indent=4))
```

For example, if the printed JSON is the following:
Expand Down

0 comments on commit 16448bc

Please sign in to comment.