I am trying to compare two dataclasses that inherit from a common base class (also a @dataclass).
The fields of the inherited classes are specific to them and are not considered in the comparison; I want to compare only the base class attributes.
Here is my attempt:
from dataclasses import dataclass, field
@dataclass(order=True)
class Base:
a: float
@dataclass(order=True)
class ChildA(Base):
attribute_a: str = field(compare=False)
@dataclass(order=True)
class ChildB(Base):
attribute_b: str = field(compare=False)
ca = ChildA(1, 'a')
cb = ChildB(2, 'b')
ca < cb
However, I get:
TypeError: '<' not supported between instances of 'ChildA' and 'ChildB'
How can I solve this?
Both have the attribute 'a' from the parent class, access the attribute using '.a'