Skip to content

Commit

Permalink
checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
jctanner committed Oct 6, 2023
1 parent de513c6 commit 23461fa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dev/scripts.community/check_unverified_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ def do_check():
continue
'''

'''
found_users = []
for login in github_logins:
this_user = User.objects.filter(username=login).first()
Expand All @@ -155,6 +156,17 @@ def do_check():
this_user = User.objects.filter(username=login.lower()).first()
if this_user and this_user != unverified_user:
found_users.append(found_users)
'''

found_users = []
for login in github_logins:
this_user = User.objects.filter(username=login).first()
if this_user and this_user == unverified_user:
continue
elif this_user:
pass
else:
print(f'FIX - create {login} user')

print(f'{unverified_user} found related {found_users}')

Expand Down

0 comments on commit 23461fa

Please sign in to comment.