In django abstract classes seem to be posibble by using:
class Meta:
abstract = True
However I do not see how to declare abstract methods/functions within these classes that do not contain any logic like e.g.
class AbstractClass(models.Model):
def abstractFunction():
class Meta:
abstract = True
The library abc repectively the notation @abstractmethod doesnt seem to applicable here, or am I wrong?