Override methods of a superclass
You can override any method of a parent class by generating necessary code from a predefined template. PyCharm creates a stub that contains a call to the method of the superclass, leaving the developer with the task of providing some meaningful source code in the method's body.
Override a method of a superclass
On the Generate Alt+Insert, and select Override methods.
menu, click Ctrl+O. Alternatively, you can right-click anywhere in the class file, then clickSelect the methods to override (hold the Shift or Ctrl key to perform a multi-selection). The list does not include the methods that are already overridden or cannot be accessed from the current subclass.
Click OK and provide the source code for the method body.
Hover over the icon in the gutter to view the name of the base class. Click it to open the overridden method declaration.
Last modified: 08 October 2024