VSCode Python - Automatically Implementing Abstract Methods

Viewed 959

Is there any support to automatically implement all abstract methods of an abstract class in VSCode with Python Environment?

class AbstractClass(ABC):

    @abstractclass
    def abstract_method():
        pass

class NonAbstractClass(AbstractClass):

    # shortcut in vscode to implement all abstract methods
    # it works if I start writing methods and then it autocompletes, that is not what I am looking for
0 Answers
Related