4e9fd5ad07fa75d47ab0c1a5c14003ae0fda48f7
Fixed return type annotations in EmailService to use Any instead of dict[str, Any] to properly handle Resend API's SendResponse type. The Resend library returns a SendResponse object in production mode and a dict in dev mode. Using Any allows both return types while maintaining type safety for callers. Changes: - Updated send_email() return type from dict[str, Any] to Any - Updated send_magic_link() return type from dict[str, Any] to Any - Updated send_registration_confirmation() return type from dict[str, Any] to Any - Removed unnecessary type annotation on result variable This resolves mypy type checking errors while preserving the existing dev/production mode behavior. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Description
No description provided
Languages
Python
89.5%
HTML
9.4%
Dockerfile
0.5%
Shell
0.3%
Mako
0.3%