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
Concrete classes generally need to implement class-specific logic. Having good ABC structures underpinning the concrete classes makes defining new concrete subclasses significantly easier.
classAbstractQuantity(ABC): ...
@finalclassQuantity(AbstractQuantity): ...
classAbstractAngle(AbstractQuantity): ... # still an ABC@finalclassLongitude(AbstractAngle): ...
@finalclassLatitude(AbstractAngle): ...
The text was updated successfully, but these errors were encountered:
Concrete classes generally need to implement class-specific logic. Having good ABC structures underpinning the concrete classes makes defining new concrete subclasses significantly easier.
The text was updated successfully, but these errors were encountered: