Skip to content

Commit

Permalink
🐛 Fix incorrect module path for update user roles (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgepstaylor authored Jul 23, 2024
1 parent f643979 commit 4ace6a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def add_roles_to_users(
root_dn,
user_role_list,
):
cli.ldap.user.process_user_roles_list(
cli.ldap_cmds.user.process_user_roles_list(
user_role_list,
user_ou,
root_dn,
Expand Down Expand Up @@ -73,7 +73,7 @@ def update_user_home_areas(
user_ou,
root_dn,
):
cli.ldap.user.change_home_areas(
cli.ldap_cmds.user.change_home_areas(
old_home_area,
new_home_area,
user_ou,
Expand Down Expand Up @@ -143,7 +143,7 @@ def update_user_roles(
user_filter,
role_filter,
):
cli.ldap.user.update_roles(
cli.ldap_cmds.user.update_roles(
roles,
user_ou,
root_dn,
Expand Down

0 comments on commit 4ace6a1

Please sign in to comment.