diff --git a/auth_oidc/__manifest__.py b/auth_oidc/__manifest__.py index 4e855e6f73..5e046a73f3 100644 --- a/auth_oidc/__manifest__.py +++ b/auth_oidc/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Authentication OpenID Connect", - "version": "16.0.1.0.2", + "version": "17.0.1.0.0", "license": "AGPL-3", "author": ( "ICTSTUDIO, André Schenkels, " diff --git a/auth_oidc/controllers/main.py b/auth_oidc/controllers/main.py index 0c0861e6da..2104a6cca0 100644 --- a/auth_oidc/controllers/main.py +++ b/auth_oidc/controllers/main.py @@ -16,7 +16,7 @@ class OpenIDLogin(OAuthLogin): def list_providers(self): - providers = super(OpenIDLogin, self).list_providers() + providers = super().list_providers() for provider in providers: flow = provider.get("flow") if flow in ("id_token", "id_token_code"): diff --git a/auth_oidc/models/res_users.py b/auth_oidc/models/res_users.py index a1be73ec88..806da1f786 100644 --- a/auth_oidc/models/res_users.py +++ b/auth_oidc/models/res_users.py @@ -56,7 +56,7 @@ def auth_oauth(self, provider, params): oauth_provider, params ) else: - return super(ResUsers, self).auth_oauth(provider, params) + return super().auth_oauth(provider, params) if not access_token: _logger.error("No access_token in response.") raise AccessDenied() diff --git a/auth_oidc/static/description/index.html b/auth_oidc/static/description/index.html index 40f1cb7ce6..12b4d34099 100644 --- a/auth_oidc/static/description/index.html +++ b/auth_oidc/static/description/index.html @@ -1,4 +1,3 @@ -