200 def create(dlg): # noqa: U100 |
200 def create(dlg): # noqa: U100 |
201 """ |
201 """ |
202 Module function to create the configuration page. |
202 Module function to create the configuration page. |
203 |
203 |
204 @param dlg reference to the configuration dialog |
204 @param dlg reference to the configuration dialog |
205 @return reference to the instantiated page (ConfigurationPageBase) |
205 @type ConfigurationDialog |
|
206 @return reference to the instantiated page |
|
207 @rtype ConfigurationPageBase |
206 """ |
208 """ |
207 page = DiffColoursPage() |
209 page = DiffColoursPage() |
208 return page |
210 return page |