115 def create(dlg): # noqa: U100 |
115 def create(dlg): # noqa: U100 |
116 """ |
116 """ |
117 Module function to create the configuration page. |
117 Module function to create the configuration page. |
118 |
118 |
119 @param dlg reference to the configuration dialog |
119 @param dlg reference to the configuration dialog |
120 @return reference to the instantiated page (ConfigurationPageBase) |
120 @type ConfigurationDialog |
|
121 @return reference to the instantiated page |
|
122 @rtype ConfigurationPageBase |
121 """ |
123 """ |
122 page = EditorAutocompletionPage() |
124 page = EditorAutocompletionPage() |
123 return page |
125 return page |