About Postponed Evaluation of Annotations
Let's say you're working on a Django project, and you have a model with a custom create method on the manager:
# managers.py
class MyManager:
def create(self):
# your custom logic here
return super().create()
# models.py
from .ma...
til.justinthurman.dev2 min read