143 def create(dlg): # noqa: U100 |
143 def create(dlg): # noqa: U100 |
144 """ |
144 """ |
145 Module function to create the configuration page. |
145 Module function to create the configuration page. |
146 |
146 |
147 @param dlg reference to the configuration dialog |
147 @param dlg reference to the configuration dialog |
148 @return reference to the instantiated page (ConfigurationPageBase) |
148 @type ConfigurationDialog |
|
149 @return reference to the instantiated page |
|
150 @rtype ConfigurationPageBase |
149 """ |
151 """ |
150 page = ProjectPage() |
152 page = ProjectPage() |
151 return page |
153 return page |