Skip to content

Commit

Permalink
check for empty user id
Browse files Browse the repository at this point in the history
  • Loading branch information
Hagellach37 committed Dec 2, 2024
1 parent 7488741 commit 2849130
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,7 @@ def get_all_affected_users():
uid_list = get_all_affected_users()

for uid in uid_list:
update_username(uid)
if len(uid) == 0:
continue
else:
update_username(uid)

0 comments on commit 2849130

Please sign in to comment.