Fix global imports

Global imports ("from X import *") are discouraged in Python.
This commit is contained in:
Graham Ullrich 2016-08-11 16:05:13 -06:00
parent a7f9b40102
commit ba4faee6ef
10 changed files with 99 additions and 33 deletions

View file

@ -9,7 +9,11 @@ from jwkest.jwk import SYMKey
from jwkest.jws import JWS
from oidc_provider.lib.utils.common import get_issuer
from oidc_provider.models import *
from oidc_provider.models import (
Code,
RSAKey,
Token,
)
from oidc_provider import settings