From e10ef6a15832ce2ad39885e7a9495346f763aa65 Mon Sep 17 00:00:00 2001 From: Brian Obot Date: Sun, 1 Mar 2026 00:35:53 +0100 Subject: [PATCH] Add Type ignore to a redundant warning --- app/routers/tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routers/tests/conftest.py b/app/routers/tests/conftest.py index 98e1903..851e288 100644 --- a/app/routers/tests/conftest.py +++ b/app/routers/tests/conftest.py @@ -10,8 +10,8 @@ @pytest.fixture async def signup_data() -> dict[str, str]: return { - "email": faker.email(), - "password": faker.password(length=8), + "email": faker.email(), # type: ignore + "password": faker.password(length=8), # type: ignore }