[Answered ]-Implementing required interfaces in abstract parent model class in Django

2👍

Use the decorators in the abc package to mark which methods should be abstract. The package takes care of the checking for you, so you don’t even have to worry about a proper location for your checks 😉

Leave a comment