31 Constructor |
31 Constructor |
32 |
32 |
33 @param parent reference to the parent object (defaults to None) |
33 @param parent reference to the parent object (defaults to None) |
34 @type QObject (optional) |
34 @type QObject (optional) |
35 """ |
35 """ |
36 super(ShortcutsFile, self).__init__(parent) |
36 super().__init__(parent) |
37 |
37 |
38 def __addActionsToDict(self, category: str, actions: list, |
38 def __addActionsToDict(self, category: str, actions: list, |
39 actionsDict: dict): |
39 actionsDict: dict): |
40 """ |
40 """ |
41 Private method to add a list of actions to the actions dictionary. |
41 Private method to add a list of actions to the actions dictionary. |