Skip to content

Commit

Permalink
nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
johanlundberg committed Nov 19, 2024
1 parent 87f6cc6 commit 41a9e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eduid/userdb/scimapi/groupdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def update_group(self, update_request: GroupUpdateRequest, db_group: ScimApiGrou
db_group.external_id = update_request.external_id
logger.debug(f"Changed external id for group: {db_group.external_id} -> {update_request.external_id}")

# Check if there where new, changed or removed members
# Check if there were new, changed or removed members
if db_group.graph.members != updated_members:
changed = True
db_group.graph = replace(db_group.graph, members=updated_members)
Expand Down

0 comments on commit 41a9e96

Please sign in to comment.