Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ Please, note that hapikey is no longer supported after v5.1.0. You can get more
#### Obtain OAuth2 access token:

```python
from hubspot.auth.oauth import ApiException
from hubspot.oauth import ApiException

try:
tokens = api_client.auth.oauth.tokens_api.create(
tokens = api_client.oauth.tokens_api.create(
grant_type="authorization_code",
redirect_uri='http://localhost',
client_id='client_id',
Expand Down
Loading