103 def create(dlg): # noqa: U100 |
103 def create(dlg): # noqa: U100 |
104 """ |
104 """ |
105 Module function to create the configuration page. |
105 Module function to create the configuration page. |
106 |
106 |
107 @param dlg reference to the configuration dialog |
107 @param dlg reference to the configuration dialog |
108 @return reference to the instantiated page (ConfigurationPageBase) |
108 @type ConfigurationDialog |
|
109 @return reference to the instantiated page |
|
110 @rtype ConfigurationPageBase |
109 """ |
111 """ |
110 page = TasksPage() |
112 page = TasksPage() |
111 return page |
113 return page |