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
The aforementioned class is actually not meant to be innstanciated directly, since it is missing some important implementations. In Python there are so-called abstract base classes (ABCs) to cover such use cases: https://docs.python.org/3/library/abc.html. We should consider making use of this feature and turning thhe accordings methods into @abstractmethod s.
The text was updated successfully, but these errors were encountered:
The aforementioned class is actually not meant to be innstanciated directly, since it is missing some important implementations. In Python there are so-called abstract base classes (ABCs) to cover such use cases: https://docs.python.org/3/library/abc.html. We should consider making use of this feature and turning thhe accordings methods into
@abstractmethod
s.The text was updated successfully, but these errors were encountered: