fix: wrong faker method
This commit is contained in:
2
main.py
2
main.py
@@ -204,7 +204,7 @@ def generate_mock_data(num_submissions=3):
|
||||
# More realistic email generation
|
||||
email_chance = fake.random_int(1, 100)
|
||||
if email_chance <= 50:
|
||||
email_contacto = fake.freeEmail()
|
||||
email_contacto = fake.free_email()
|
||||
elif email_chance <= 70:
|
||||
email_contacto = fake.company_email()
|
||||
else:
|
||||
|
Reference in New Issue
Block a user