Consider the following:
@dataclass
class AbstractDataclass(ABC):
name: str
@dataclass
class ConcreteDataclass(AbstractDataclass):
other: str
save_table will not store instances of ConcreteDataclass because ConcreteDataclass.__class__ is not a type
see backends.py line 350
Consider the following:
save_table will not store instances of
ConcreteDataclassbecauseConcreteDataclass.__class__is not atypesee
backends.pyline 350