Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Pheenoh committed Apr 7, 2024
1 parent 4a6168c commit 44bba9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage-users.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def remove_ghidra_users(current_users,yaml_users,dry_run):

ret_users = 0

users_to_remove = [ghidra_user for ghidra_user in current_users.keys() if ghidra_user not in yaml_users["ghidraName"]]
users_to_remove = [ghidra_user for ghidra_user in current_users.keys() if all(ghidra_user != user.get('ghidraName') for user in yaml_users)]


print("Current users:", current_users)
Expand Down

0 comments on commit 44bba9c

Please sign in to comment.