99 def create(dlg): # noqa: U100 |
99 def create(dlg): # noqa: U100 |
100 """ |
100 """ |
101 Module function to create the configuration page. |
101 Module function to create the configuration page. |
102 |
102 |
103 @param dlg reference to the configuration dialog |
103 @param dlg reference to the configuration dialog |
104 @return reference to the instantiated page (ConfigurationPageBase) |
104 @type ConfigurationDialog |
|
105 @return reference to the instantiated page |
|
106 @rtype ConfigurationPageBase |
105 """ |
107 """ |
106 page = EditorCalltipsPage() |
108 page = EditorCalltipsPage() |
107 return page |
109 return page |