125 def create(dlg): # noqa: U100 |
125 def create(dlg): # noqa: U100 |
126 """ |
126 """ |
127 Module function to create the configuration page. |
127 Module function to create the configuration page. |
128 |
128 |
129 @param dlg reference to the configuration dialog |
129 @param dlg reference to the configuration dialog |
130 @return reference to the instantiated page (ConfigurationPageBase) |
130 @type ConfigurationDialog |
|
131 @return reference to the instantiated page |
|
132 @rtype ConfigurationPageBase |
131 """ |
133 """ |
132 page = EditorSpellCheckingPage() |
134 page = EditorSpellCheckingPage() |
133 return page |
135 return page |