From 7fb926f3c81457d4767c5885c60d07b4a7ade851 Mon Sep 17 00:00:00 2001 From: Evan Culver Date: Wed, 18 Dec 2013 09:28:09 -0800 Subject: [PATCH] #55 - Removing another unnecessary import. --- provider/oauth2/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/oauth2/models.py b/provider/oauth2/models.py index 0fe579a..9a6bdf9 100644 --- a/provider/oauth2/models.py +++ b/provider/oauth2/models.py @@ -7,7 +7,7 @@ views in :attr:`provider.views`. from django.db import models from django.conf import settings from .. import constants -from ..constants import CLIENT_TYPES, DELETE_EXPIRED +from ..constants import CLIENT_TYPES from ..utils import now, short_token, long_token, get_code_expiry from ..utils import get_token_expiry, serialize_instance, deserialize_instance from .managers import AccessTokenManager