diff options
author | Frederick Muriuki Muriithi | 2024-08-15 15:54:44 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-15 15:54:44 -0500 |
commit | 10973a9f274d36b25bc8235a53cc3f55504f2578 (patch) | |
tree | 79e504d1c5cb934d4e31503c0fad42d6a0ae9259 /gn_auth/auth/authorisation/resources/groups | |
parent | 9b007bdcc6cff8f479fdd8f83816e6589d6cc668 (diff) | |
download | gn-auth-10973a9f274d36b25bc8235a53cc3f55504f2578.tar.gz |
Fix a bunch of linting errors.
Diffstat (limited to 'gn_auth/auth/authorisation/resources/groups')
-rw-r--r-- | gn_auth/auth/authorisation/resources/groups/views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/resources/groups/views.py b/gn_auth/auth/authorisation/resources/groups/views.py index f98783b..920f504 100644 --- a/gn_auth/auth/authorisation/resources/groups/views.py +++ b/gn_auth/auth/authorisation/resources/groups/views.py @@ -48,7 +48,9 @@ def create_group(): with require_oauth.acquire("profile group") as the_token: group_name=request_json().get("group_name", "").strip() if not bool(group_name): - raise GroupCreationError(f"Could not create the group. Invalid Group name provided was `{group_name}`") + raise GroupCreationError( + "Could not create the group. Invalid Group name provided was " + f"`{group_name}`") db_uri = current_app.config["AUTH_DB"] with db.connection(db_uri) as conn: |