193 dlg.exec() |
193 dlg.exec() |
194 |
194 |
195 self.__populateDictionariesList() |
195 self.__populateDictionariesList() |
196 |
196 |
197 |
197 |
198 def create(dlg): # noqa: U100 |
198 def create(_dlg): |
199 """ |
199 """ |
200 Module function to create the configuration page. |
200 Module function to create the configuration page. |
201 |
201 |
202 @param dlg reference to the configuration dialog |
202 @param _dlg reference to the configuration dialog (unused) |
203 @type Configuration |
203 @type ConfigurationDialog |
204 @return reference to the instantiated page |
204 @return reference to the instantiated page |
205 @rtype ConfigurationPageBase |
205 @rtype ConfigurationPageBase |
206 """ |
206 """ |
207 page = WebBrowserSpellCheckingPage() |
207 page = WebBrowserSpellCheckingPage() |
208 return page |
208 return page |