Ensuring View Consistency with abc.ABC in Django
Python’s
abc
module lets you create abstract base classes which is a great way to enforce method contracts in your code. With
abc.ABC
,
@abstractmethod
, and the new
@override
decorator from Python 3.12, you can make your class hierarchy …