mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Add missing comma (#5978)
This commit is contained in:
parent
40d5985f57
commit
45acfe05b4
|
@ -253,7 +253,7 @@ The `TokenAuthentication` class can be used to support REST framework's built-in
|
||||||
`TokenAuthentication`, as well as OAuth and JWT schemes.
|
`TokenAuthentication`, as well as OAuth and JWT schemes.
|
||||||
|
|
||||||
auth = coreapi.auth.TokenAuthentication(
|
auth = coreapi.auth.TokenAuthentication(
|
||||||
scheme='JWT'
|
scheme='JWT',
|
||||||
token='<token>'
|
token='<token>'
|
||||||
)
|
)
|
||||||
client = coreapi.Client(auth=auth)
|
client = coreapi.Client(auth=auth)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user