yeah that’s fair. and migrating a codebase to being typed is a nightmare. it’s worth it, but fixing all the little edge cases that you didn’t know you had, or just boxing with the type checker when it freaks out, is an extremely frustrating experience.
just run mypy dude
I do, and still a pain in the ass because mypy is an afterthought of python (if your models aren’t in a migration then it’s an error)
is django a requirement? because fastapi works amazingly with mypy.
All our codebase is django and the admin is nice, and my manager is more conservative on the stack choice for the company XD
yeah that’s fair. and migrating a codebase to being typed is a nightmare. it’s worth it, but fixing all the little edge cases that you didn’t know you had, or just boxing with the type checker when it freaks out, is an extremely frustrating experience.
Until something is
AnyorUnknownand everything stops workingand that’s why you don’t let those types in
libraries let them in