95 def create(dlg): # noqa: U100 |
96 def create(dlg): # noqa: U100 |
96 """ |
97 """ |
97 Module function to create the configuration page. |
98 Module function to create the configuration page. |
98 |
99 |
99 @param dlg reference to the configuration dialog |
100 @param dlg reference to the configuration dialog |
100 @return reference to the instantiated page (ConfigurationPageBase) |
101 @type ConfigurationDialog |
|
102 @return reference to the instantiated page |
|
103 @rtype ConfigurationPageBase |
101 """ |
104 """ |
102 page = LogViewerPage() |
105 page = LogViewerPage() |
103 return page |
106 return page |