Skip to content

Commit cb03b29

Browse files
committed
Fix import
Signed-off-by: Anuraag Agrawal <[email protected]>
1 parent 73572f7 commit cb03b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/interceptors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ the authorization header.
234234
=== "Async"
235235

236236
```python
237-
from contextvars import ContextVar, Token
237+
from contextvars import ContextVar
238238

239239
_auth_token = ContextVar["auth_token"]("current_auth_token")
240240

@@ -248,7 +248,7 @@ the authorization header.
248248
=== "Sync"
249249

250250
```python
251-
from contextvars import ContextVar, Token
251+
from contextvars import ContextVar
252252

253253
_auth_token = ContextVar["auth_token"]("current_auth_token")
254254

0 commit comments

Comments
 (0)