97 Private slot handling a click of the refresh button. |
97 Private slot handling a click of the refresh button. |
98 """ |
98 """ |
99 self.py3EnvironmentEdit.setText(Preferences.getDebugger("Python3VirtualEnv")) |
99 self.py3EnvironmentEdit.setText(Preferences.getDebugger("Python3VirtualEnv")) |
100 |
100 |
101 |
101 |
102 def create(dlg): # noqa: U100 |
102 def create(_dlg): |
103 """ |
103 """ |
104 Module function to create the configuration page. |
104 Module function to create the configuration page. |
105 |
105 |
106 @param dlg reference to the configuration dialog |
106 @param _dlg reference to the configuration dialog (unused) |
107 @type ConfigurationDialog |
107 @type ConfigurationDialog |
108 @return reference to the instantiated page |
108 @return reference to the instantiated page |
109 @rtype ConfigurationPageBase |
109 @rtype ConfigurationPageBase |
110 """ |
110 """ |
111 page = PythonPage() |
111 page = PythonPage() |