Example
| Before | After |
|---|---|
class SuperClass:
def super_method(self):
pass
class SubClassOne(SuperClass):
def my_method(self):
pass
|
class SuperClass:
def super_method(self):
pass
def my_method(self):
pass
class SubClassOne(SuperClass):
pass
|
- Select the class to be moved to a superclass.
- On the main menu or on the context menu of the selection, choose . Pull Members Up dialog box appears.
- Select the destination object (superclass).
- In the Members section, select the members you want to move.
- Click OK to pull the selected members to their destination.

