From 689bf4f0202e46812efa58802cbf8221fa317e78 Mon Sep 17 00:00:00 2001 From: Ari Rouvinen Date: Mon, 7 May 2018 18:28:43 +0200 Subject: [PATCH] Add missing comma --- docs/topics/api-clients.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/api-clients.md b/docs/topics/api-clients.md index 3dbcaf3d8..ec0b4272c 100644 --- a/docs/topics/api-clients.md +++ b/docs/topics/api-clients.md @@ -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='' ) client = coreapi.Client(auth=auth)