Add missing comma

This commit is contained in:
Ari Rouvinen 2018-05-07 18:28:43 +02:00 committed by GitHub
parent 4340ff42de
commit 689bf4f020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
auth = coreapi.auth.TokenAuthentication(
scheme='JWT'
scheme='JWT',
token='<token>'
)
client = coreapi.Client(auth=auth)