aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth/auth')
-rw-r--r--gn_auth/auth/authentication/oauth2/models/oauth2client.py5
-rw-r--r--gn_auth/auth/authorisation/users/admin/views.py1
2 files changed, 5 insertions, 1 deletions
diff --git a/gn_auth/auth/authentication/oauth2/models/oauth2client.py b/gn_auth/auth/authentication/oauth2/models/oauth2client.py
index 2c36f45..df5d564 100644
--- a/gn_auth/auth/authentication/oauth2/models/oauth2client.py
+++ b/gn_auth/auth/authentication/oauth2/models/oauth2client.py
@@ -292,7 +292,10 @@ def delete_client(
def update_client_attribute(
- client: OAuth2Client, attribute: str, value: Any) -> OAuth2Client:
+ client: OAuth2Client,# pylint: disable=[redefined-outer-name]
+ attribute: str,
+ value: Any
+) -> OAuth2Client:
"""Return a new OAuth2Client with the given attribute updated/changed."""
attrs = {
attr: type(value)
diff --git a/gn_auth/auth/authorisation/users/admin/views.py b/gn_auth/auth/authorisation/users/admin/views.py
index 5ad9038..9bc1c36 100644
--- a/gn_auth/auth/authorisation/users/admin/views.py
+++ b/gn_auth/auth/authorisation/users/admin/views.py
@@ -327,6 +327,7 @@ def delete_client():
@admin.route("/clients/<uuid:client_id>/change-secret", methods=["GET", "POST"])
@is_admin
def change_client_secret(client_id: uuid.UUID):
+ """Enable changing of a client's secret."""
def __no_client__():
# Calling the function causes the flash to be evaluated
# flash("No such client was found!", "alert-danger")