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

Skip to content

Commit 5301f21

Browse files
authored
Fix indenting on EXAMPLES.md
1 parent 947a768 commit 5301f21

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

EXAMPLES.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
- [Authenticating with a application configured to use `private_key_jwt` token endpoint auth method](#authenticating-with-a-application-configured-to-use-private-key-jwt-token-endpoint-auth-method)
66
- [Management SDK](#management-sdk)
77
- [Connections](#connections)
8-
- [Error handling](#error-handling)
9-
- [Asynchronous environments](#asynchronous-environments)
8+
- [Error handling](#error-handling)
9+
- [Asynchronous environments](#asynchronous-environments)
1010

1111
## Authentication SDK
1212

@@ -135,15 +135,15 @@ Success!
135135
All endpoints follow a similar structure to `connections`, and try to follow as
136136
closely as possible the [API documentation](https://auth0.com/docs/api/v2).
137137

138-
### Error handling
138+
## Error handling
139139

140140
When consuming methods from the API clients, the requests could fail for a number of reasons:
141141
- Invalid data sent as part of the request: An `Auth0Error` is raised with the error code and description.
142142
- Global or Client Rate Limit reached: A `RateLimitError` is raised and the time at which the limit
143143
resets is exposed in the `reset_at` property. When the header is unset, this value will be `-1`.
144144
- Network timeouts: Adjustable by passing a `timeout` argument to the client. See the [rate limit docs](https://auth0.com/docs/policies/rate-limits) for details.
145145

146-
### Asynchronous environments
146+
## Asynchronous environments
147147

148148
This SDK provides async methods built on top of [asyncio](https://docs.python.org/3/library/asyncio.html). To make them available you must have the [aiohttp](https://docs.aiohttp.org/en/stable/) module installed.
149149

0 commit comments

Comments
 (0)