How to specify for IDE (PyCharm) and for documentation tools, that described method is abstract?
What i want:
class Test:
@abc.abstractmethod
def test(self):
"""
This method must be overridden
:abstract
"""
pass
But docstring :abstract
is not exists.
How to told to the IDE, that method is abstract and must be overridden?