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
AuthenticationProvider, Mask, Error, and DataClass are all abstract classes (i.e., have methods which raise NotImplementedError) but none of them subclass ABC or decorate the methods with abstractmethod. This means that these classes can be instantiated (although the abstract methods obviously cannot be called).
The text was updated successfully, but these errors were encountered:
TOFarmer
added
the
Priority: 1
EVENTUAL: A low priority issue that is unlikely to be addressed until the priority increases.
label
Feb 8, 2021
Description
AuthenticationProvider
,Mask
,Error
, andDataClass
are all abstract classes (i.e., have methods whichraise NotImplementedError
) but none of them subclassABC
or decorate the methods withabstractmethod
. This means that these classes can be instantiated (although the abstract methods obviously cannot be called).The text was updated successfully, but these errors were encountered: