91 def create(dlg): # noqa: U100 |
91 def create(dlg): # noqa: U100 |
92 """ |
92 """ |
93 Module function to create the configuration page. |
93 Module function to create the configuration page. |
94 |
94 |
95 @param dlg reference to the configuration dialog |
95 @param dlg reference to the configuration dialog |
96 @return reference to the instantiated page (ConfigurationPageBase) |
96 @type ConfigurationDialog |
|
97 @return reference to the instantiated page |
|
98 @rtype ConfigurationPageBase |
97 """ |
99 """ |
98 page = HexEditorPage() |
100 page = HexEditorPage() |
99 return page |
101 return page |