src/auth/jwt.py:12: error: Argument 1 to "decode" has incompatible type "bytes"; expected "str"  [arg-type]
src/auth/jwt.py:28: error: Item "None" of "Optional[User]" has no attribute "email"  [union-attr]
src/auth/jwt.py:34: error: Incompatible return value type (got "Optional[str]", expected "str")  [return-value]
src/auth/jwt.py:51: error: Name "secret_key" is not defined  [name-defined]
src/auth/jwt.py:67: note: Revealed type is "builtins.str"
src/auth/jwt.py:89: error: Cannot assign to a method  [method-assign]
src/models/user.py:8: error: Incompatible types in assignment (expression has type "None", variable has type "str")  [assignment]
src/models/user.py:23: error: Argument 1 to "hash_password" has incompatible type "Optional[str]"; expected "str"  [arg-type]
src/models/user.py:34: error: "User" has no attribute "created_at"  [attr-defined]
src/models/user.py:47: error: Incompatible return value type (got "int", expected "bool")  [return-value]
src/models/user.py:59: error: Value of type variable "T" of "List" cannot be "Optional[str]"  [type-var]
src/models/user.py:72: error: Function is missing a return statement  [return]
src/models/user.py:85: error: Item "None" of "Optional[str]" has no attribute "split"  [union-attr]
src/api/routes.py:15: error: Cannot find implementation or library stub for module named "flask_jwt"  [import]
src/api/routes.py:29: error: Argument 1 to "jsonify" has incompatible type "Optional[Dict[str, str]]"; expected "Dict[str, str]"  [arg-type]
src/api/routes.py:43: error: Item "None" of "Optional[Response]" has no attribute "headers"  [union-attr]
src/api/routes.py:57: error: Incompatible types in assignment (expression has type "str", variable has type "int")  [assignment]
src/api/routes.py:71: error: "Response" has no attribute "set_cookie"  [attr-defined]
src/api/routes.py:85: error: Missing return statement  [return]
src/services/auth_service.py:11: error: Name "bcrypt" is not defined  [name-defined]
src/services/auth_service.py:24: error: Argument 1 to "verify" has incompatible type "str"; expected "bytes"  [arg-type]
src/services/auth_service.py:37: error: Incompatible return value type (got "Optional[str]", expected "str")  [return-value]
src/services/auth_service.py:51: error: Item "None" of "Optional[Token]" has no attribute "expires_at"  [union-attr]
src/services/auth_service.py:64: error: "AuthService" has no attribute "cache"  [attr-defined]
src/services/auth_service.py:78: error: Argument "timeout" to "get" has incompatible type "str"; expected "int"  [arg-type]
src/services/payment.py:9: error: Cannot find implementation or library stub for module named "stripe"  [import]
src/services/payment.py:22: error: Argument 1 to "Charge.create" has incompatible type "Optional[int]"; expected "int"  [arg-type]
src/services/payment.py:35: error: Item "None" of "Optional[Charge]" has no attribute "id"  [union-attr]
src/services/payment.py:48: error: Incompatible return value type (got "str", expected "Optional[str]")  [return-value]
src/services/payment.py:61: error: Value of type "Optional[Dict[str, Any]]" is not indexable  [index]
src/utils/helpers.py:7: error: Module "utils" has no attribute "config"  [attr-defined]
src/utils/helpers.py:19: error: Unsupported operand types for + ("str" and "int")  [operator]
src/utils/helpers.py:31: error: Item "None" of "Optional[str]" has no attribute "strip"  [union-attr]
src/utils/helpers.py:45: error: Incompatible types in assignment (expression has type "List[str]", variable has type "str")  [assignment]
src/utils/helpers.py:59: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
tests/test_auth.py:14: error: Argument 1 to "patch" has incompatible type "str"; expected "str | Callable[..., Any]"  [arg-type]
tests/test_auth.py:27: error: Cannot assign to a method  [method-assign]
tests/test_auth.py:41: error: Item "None" of "Optional[Response]" has no attribute "json"  [union-attr]
tests/test_models.py:8: error: Module "models" has no attribute "UserFactory"  [attr-defined]
tests/test_models.py:21: error: Incompatible types in assignment (expression has type "int", variable has type "str")  [assignment]
Found 39 errors in 8 files (checked 12 source files)
