fix: wrong faker method

This commit is contained in:
2025-09-11 23:10:38 +02:00
parent 4c49e63299
commit dad79d1d0d
2 changed files with 2 additions and 2 deletions

View File

@@ -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: