From b0f888f23661ab68edf5b5fecd8d62c27ab92d41 Mon Sep 17 00:00:00 2001 From: Alexander PapaTutuWawa Date: Fri, 6 Nov 2020 20:56:31 +0100 Subject: [PATCH] Add accidentally removed empty line --- django_etebase/token_auth/authentication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django_etebase/token_auth/authentication.py b/django_etebase/token_auth/authentication.py index 8b1bca5..432c8cf 100644 --- a/django_etebase/token_auth/authentication.py +++ b/django_etebase/token_auth/authentication.py @@ -10,6 +10,7 @@ from .models import AuthToken, get_default_expiry AUTO_REFRESH = True MIN_REFRESH_INTERVAL = 60 + class TokenAuthentication(DRFTokenAuthentication): keyword = 'Token' model = AuthToken