mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-13 13:09:41 +02:00
cleanup extra print statement
This commit is contained in:
parent
fe07d3114c
commit
7a13c17e3c
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ class UserFixture:
|
||||||
|
|
||||||
# Fetch existing users by email
|
# Fetch existing users by email
|
||||||
existing_users_by_email = User.objects.filter(email__in=emails).values_list("email", "username", "id")
|
existing_users_by_email = User.objects.filter(email__in=emails).values_list("email", "username", "id")
|
||||||
print(existing_users_by_email)
|
|
||||||
# Create a dictionary to map emails to existing usernames
|
# Create a dictionary to map emails to existing usernames
|
||||||
email_to_existing_user = {user[0]: user[1] for user in existing_users_by_email}
|
email_to_existing_user = {user[0]: user[1] for user in existing_users_by_email}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue