From dad79d1d0d3e8a343ad436354ff35ffee57ae946 Mon Sep 17 00:00:00 2001 From: Jorge Teixeira Date: Thu, 11 Sep 2025 23:10:38 +0200 Subject: [PATCH] fix: wrong faker method --- main.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index e91570a..4244a31 100644 --- a/main.py +++ b/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: diff --git a/pyproject.toml b/pyproject.toml index df32d50..6f407d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "l4l1g4-d3nunc145" -version = "0.1.0" +version = "0.1.1" description = "Automated LaLiga piracy reporting tool for legitimate complaints. Spanish form automation with Docker support." readme = "README.md" requires-python = ">=3.13"