From 286b87c4d7f09dffbae0145ccc9f0d55cebe1adb Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 3 Jul 2025 12:00:43 -0500 Subject: Fix some linting issues. --- gn_auth/auth/authorisation/users/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn_auth/auth/authorisation/users/models.py') diff --git a/gn_auth/auth/authorisation/users/models.py b/gn_auth/auth/authorisation/users/models.py index 58ebd7a..956f239 100644 --- a/gn_auth/auth/authorisation/users/models.py +++ b/gn_auth/auth/authorisation/users/models.py @@ -37,7 +37,7 @@ def __process_age_clause__(age_desc: str) -> tuple[str, int]: case "exactly": return "created = :created", _param case _: - raise Exception("Invalid age descriptor.") + raise Exception("Invalid age descriptor.")# pylint: disable=[broad-exception-raised] def __list_user_clauses_and_params__(**kwargs) -> tuple[str, dict[str, Union[int, str]]]: -- cgit v1.2.3