providers/oidc: fix incorrectly sorted imports
This commit is contained in:
parent
2ed8e72c62
commit
86f16e2781
|
@ -1,5 +1,7 @@
|
||||||
# passbook
|
# passbook
|
||||||
|
|
||||||
|
![](https://github.com/BeryJu/passbook/workflows/passbook-ci/badge.svg)
|
||||||
|
|
||||||
## Quick instance
|
## Quick instance
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
|
from django.db.models.deletion import Collector
|
||||||
from django.http import HttpRequest, HttpResponse
|
from django.http import HttpRequest, HttpResponse
|
||||||
from django.shortcuts import redirect
|
from django.shortcuts import redirect
|
||||||
from oidc_provider.models import Client
|
from oidc_provider.models import Client
|
||||||
from structlog import get_logger
|
from structlog import get_logger
|
||||||
from django.db.models.deletion import Collector
|
|
||||||
|
|
||||||
from passbook.audit.models import Event, EventAction
|
from passbook.audit.models import Event, EventAction
|
||||||
from passbook.core.models import Application, User, Provider
|
from passbook.core.models import Application, Provider, User
|
||||||
from passbook.policies.engine import PolicyEngine
|
from passbook.policies.engine import PolicyEngine
|
||||||
|
|
||||||
LOGGER = get_logger()
|
LOGGER = get_logger()
|
||||||
|
|
Reference in a new issue