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