diff --git a/README.md b/README.md index 8c3cf0ccd0..70329e0f4c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # passbook +![](https://github.com/BeryJu/passbook/workflows/passbook-ci/badge.svg) + ## Quick instance ``` diff --git a/passbook/providers/oidc/lib.py b/passbook/providers/oidc/lib.py index 9e1d685ae4..7a6d2a4a2e 100644 --- a/passbook/providers/oidc/lib.py +++ b/passbook/providers/oidc/lib.py @@ -2,14 +2,14 @@ from typing import Optional from django.contrib import messages +from django.db.models.deletion import Collector from django.http import HttpRequest, HttpResponse from django.shortcuts import redirect from oidc_provider.models import Client from structlog import get_logger -from django.db.models.deletion import Collector 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 LOGGER = get_logger()