#55 - Removing another unnecessary import.

This commit is contained in:
Evan Culver 2013-12-18 09:28:09 -08:00
parent 9dfcfe73cc
commit 7fb926f3c8
1 changed files with 1 additions and 1 deletions

View File

@ -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