You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to current implementation in annotation, BoolElement inherits from int instead of bool (actually bool is @final and not subclassable). This causes inconsistency like:
The only fix is to explicitly list all dunders for all subclasses of ObjectifiedDataElement, so they are no more subclass of builtin types, and therefore overridable.
The text was updated successfully, but these errors were encountered:
Due to current implementation in annotation, BoolElement inherits from
int
instead ofbool
(actuallybool
is@final
and not subclassable). This causes inconsistency like:The only fix is to explicitly list all dunders for all subclasses of
ObjectifiedDataElement
, so they are no more subclass of builtin types, and therefore overridable.The text was updated successfully, but these errors were encountered: