71 self.gotoClickEdit.setText( |
71 self.gotoClickEdit.setText( |
72 MouseUtilities.MouseButtonModifier2String(*self.__modifiers["goto"]) |
72 MouseUtilities.MouseButtonModifier2String(*self.__modifiers["goto"]) |
73 ) |
73 ) |
74 |
74 |
75 |
75 |
76 def create(dlg): # noqa: U100 |
76 def create(_dlg): |
77 """ |
77 """ |
78 Module function to create the configuration page. |
78 Module function to create the configuration page. |
79 |
79 |
80 @param dlg reference to the configuration dialog |
80 @param _dlg reference to the configuration dialog (unused) |
81 @type ConfigurationDialog |
81 @type ConfigurationDialog |
82 @return reference to the instantiated page |
82 @return reference to the instantiated page |
83 @rtype ConfigurationPageBase |
83 @rtype ConfigurationPageBase |
84 """ |
84 """ |
85 page = EditorMouseClickHandlerJediPage() |
85 page = EditorMouseClickHandlerJediPage() |