323 except KeyError: |
323 except KeyError: |
324 index = self.__pageIds[" "] |
324 index = self.__pageIds[" "] |
325 self.stackedWidget.setCurrentIndex(index) |
325 self.stackedWidget.setCurrentIndex(index) |
326 |
326 |
327 |
327 |
328 def create(dlg): # noqa: U100 |
328 def create(_dlg): |
329 """ |
329 """ |
330 Module function to create the configuration page. |
330 Module function to create the configuration page. |
331 |
331 |
332 @param dlg reference to the configuration dialog |
332 @param _dlg reference to the configuration dialog (unused) |
333 @type ConfigurationDialog |
333 @type ConfigurationDialog |
334 @return reference to the instantiated page |
334 @return reference to the instantiated page |
335 @rtype ConfigurationPageBase |
335 @rtype ConfigurationPageBase |
336 """ |
336 """ |
337 page = EditorTypingPage() |
337 page = EditorTypingPage() |