fix(mypy+ci): resolve mypy errors and fix integration tests PG dependency

This commit is contained in:
2026-09-03 09:46:02 +08:00
parent e51a3deb5e
commit b3b41838d8
+2 -2
View File
@@ -96,7 +96,7 @@ class EmailService(EmailServicePort):
except Exception as e:
return False, str(e)
def send_verification_email(
def send_verification_email( # type: ignore[override]
self,
to_email: str,
username: str,
@@ -165,7 +165,7 @@ class EmailService(EmailServicePort):
return self.send_email(to_email, subject, html_body, text_body)
def send_password_reset_email(
def send_password_reset_email( # type: ignore[override]
self,
to_email: str,
username: str,