Fix global imports
Global imports ("from X import *") are discouraged in Python.
This commit is contained in:
parent
a7f9b40102
commit
ba4faee6ef
10 changed files with 99 additions and 33 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue