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
Linting complains about the signatures of several methods in this class (no-self-use), and the issue could be resolved by reimplementing them as @staticmethod methods, but that might be API-breaking if anyone is making use of self references in subclassed implementations. If these can't be @staticmethod then they could be reimplemented as a proper ABC using the @abstractmethod decorator.
The text was updated successfully, but these errors were encountered:
mpounsett
changed the title
Class Summary should be reimplemented as an actual Abstract Base Class
Class Summary could be reimplemented as an actual Abstract Base Class
Feb 6, 2022
Linting complains about the signatures of several methods in this class (no-self-use), and the issue could be resolved by reimplementing them as
@staticmethod
methods, but that might be API-breaking if anyone is making use ofself
references in subclassed implementations. If these can't be@staticmethod
then they could be reimplemented as a proper ABC using the@abstractmethod
decorator.The text was updated successfully, but these errors were encountered: