138 def create(dlg): # noqa: U100 |
138 def create(dlg): # noqa: U100 |
139 """ |
139 """ |
140 Module function to create the configuration page. |
140 Module function to create the configuration page. |
141 |
141 |
142 @param dlg reference to the configuration dialog |
142 @param dlg reference to the configuration dialog |
143 @return reference to the instantiated page (ConfigurationPageBase) |
143 @type ConfigurationDialog |
|
144 @return reference to the instantiated page |
|
145 @rtype ConfigurationPageBase |
144 """ |
146 """ |
145 page = DebuggerPython3Page() |
147 page = DebuggerPython3Page() |
146 return page |
148 return page |