src/eric7/Preferences/ConfigurationPages/DebuggerPython3Page.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9413
80c06d472826
--- a/src/eric7/Preferences/ConfigurationPages/DebuggerPython3Page.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/DebuggerPython3Page.py	Wed Jul 13 14:55:47 2022 +0200
@@ -23,6 +23,7 @@
     """
     Class implementing the Debugger Python3 configuration page.
     """
+
     def __init__(self):
         """
         Constructor
@@ -30,28 +31,30 @@
         super().__init__()
         self.setupUi(self)
         self.setObjectName("DebuggerPython3Page")
-        
+
         try:
             self.__virtualenvManager = ericApp().getObject("VirtualEnvManager")
             self.__standalone = False
         except KeyError:
             from VirtualEnv.VirtualenvManager import VirtualenvManager
+
             self.__virtualenvManager = VirtualenvManager()
             self.__standalone = True
-        
+
         self.venvDlgButton.setVisible(self.__standalone)
         self.venvDlgButton.setIcon(UI.PixmapCache.getIcon("virtualenv"))
-        
+
         self.venvRefreshButton.setVisible(not self.__standalone)
         self.venvRefreshButton.setIcon(UI.PixmapCache.getIcon("reload"))
-        
+
         self.debugClientPicker.setMode(EricPathPickerModes.OPEN_FILE_MODE)
-        self.debugClientPicker.setToolTip(self.tr(
-            "Press to select the Debug Client via a file selection dialog"))
+        self.debugClientPicker.setToolTip(
+            self.tr("Press to select the Debug Client via a file selection dialog")
+        )
         self.debugClientPicker.setFilters(self.tr("Python Files (*.py *.py3)"))
-        
+
         self.__populateAndSetVenvComboBox()
-        
+
         # set initial values
         dct = Preferences.getDebugger("DebugClientType3")
         if dct == "standard":
@@ -59,43 +62,38 @@
         else:
             self.customButton.setChecked(True)
         self.debugClientPicker.setText(
-            Preferences.getDebugger("DebugClient3"), toNative=False)
-        self.pyRedirectCheckBox.setChecked(
-            Preferences.getDebugger("Python3Redirect"))
+            Preferences.getDebugger("DebugClient3"), toNative=False
+        )
+        self.pyRedirectCheckBox.setChecked(Preferences.getDebugger("Python3Redirect"))
         self.pyNoEncodingCheckBox.setChecked(
-            Preferences.getDebugger("Python3NoEncoding"))
-        self.sourceExtensionsEdit.setText(
-            Preferences.getDebugger("Python3Extensions"))
-    
+            Preferences.getDebugger("Python3NoEncoding")
+        )
+        self.sourceExtensionsEdit.setText(Preferences.getDebugger("Python3Extensions"))
+
     def save(self):
         """
         Public slot to save the Debugger Python configuration.
         """
-        Preferences.setDebugger(
-            "Python3VirtualEnv",
-            self.venvComboBox.currentText())
+        Preferences.setDebugger("Python3VirtualEnv", self.venvComboBox.currentText())
         dct = "standard" if self.standardButton.isChecked() else "custom"
         Preferences.setDebugger("DebugClientType3", dct)
         Preferences.setDebugger(
-            "DebugClient3",
-            self.debugClientPicker.text(toNative=False))
+            "DebugClient3", self.debugClientPicker.text(toNative=False)
+        )
+        Preferences.setDebugger("Python3Redirect", self.pyRedirectCheckBox.isChecked())
         Preferences.setDebugger(
-            "Python3Redirect",
-            self.pyRedirectCheckBox.isChecked())
-        Preferences.setDebugger(
-            "Python3NoEncoding",
-            self.pyNoEncodingCheckBox.isChecked())
-    
+            "Python3NoEncoding", self.pyNoEncodingCheckBox.isChecked()
+        )
+
     def __populateAndSetVenvComboBox(self):
         """
         Private method to populate and set the virtual environment combo box.
         """
         self.venvComboBox.clear()
         self.venvComboBox.addItems(
-            [""] +
-            sorted(self.__virtualenvManager.getVirtualenvNames())
+            [""] + sorted(self.__virtualenvManager.getVirtualenvNames())
         )
-        
+
         # set initial value
         venvName = Preferences.getDebugger("Python3VirtualEnv")
         if venvName:
@@ -103,15 +101,14 @@
             if index < 0:
                 index = 0
             self.venvComboBox.setCurrentIndex(index)
-    
+
     @pyqtSlot()
     def on_refreshButton_clicked(self):
         """
         Private slot handling a click of the refresh button.
         """
-        self.sourceExtensionsEdit.setText(
-            Preferences.getDebugger("Python3Extensions"))
-    
+        self.sourceExtensionsEdit.setText(Preferences.getDebugger("Python3Extensions"))
+
     @pyqtSlot()
     def on_venvDlgButton_clicked(self):
         """
@@ -122,19 +119,19 @@
             self.__populateAndSetVenvComboBox()
             self.activateWindow()
             self.raise_()
-    
+
     @pyqtSlot()
     def on_venvRefreshButton_clicked(self):
         """
         Private slot to reload the list of virtual environments.
         """
         self.__populateAndSetVenvComboBox()
-    
+
 
 def create(dlg):
     """
     Module function to create the configuration page.
-    
+
     @param dlg reference to the configuration dialog
     @return reference to the instantiated page (ConfigurationPageBase)
     """

eric ide

mercurial