108 def create(dlg): # noqa: U100 |
108 def create(dlg): # noqa: U100 |
109 """ |
109 """ |
110 Module function to create the configuration page. |
110 Module function to create the configuration page. |
111 |
111 |
112 @param dlg reference to the configuration dialog |
112 @param dlg reference to the configuration dialog |
113 @return reference to the instantiated page (ConfigurationPageBase) |
113 @type ConfigurationDialog |
|
114 @return reference to the instantiated page |
|
115 @rtype ConfigurationPageBase |
114 """ |
116 """ |
115 page = EditorSearchPage() |
117 page = EditorSearchPage() |
116 return page |
118 return page |