src/eric7/CodeFormatting/IsortConfigurationDialog.py

branch
eric7
changeset 10373
093dcebe5ecb
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10372:1444b4bee64b 10373:093dcebe5ecb
89 self.tr("Place a code snippet for 'pyproject.toml' into the clipboard.") 89 self.tr("Place a code snippet for 'pyproject.toml' into the clipboard.")
90 ) 90 )
91 self.__tomlButton.clicked.connect(self.__createTomlSnippet) 91 self.__tomlButton.clicked.connect(self.__createTomlSnippet)
92 92
93 self.profileComboBox.addItem("") 93 self.profileComboBox.addItem("")
94 self.profileComboBox.addItems(sorted(profiles.keys())) 94 self.profileComboBox.addItems(sorted(profiles))
95 95
96 self.pythonComboBox.addItem("", "") 96 self.pythonComboBox.addItem("", "")
97 self.pythonComboBox.addItem(self.tr("All Versions"), "all") 97 self.pythonComboBox.addItem(self.tr("All Versions"), "all")
98 for pyTarget in VALID_PY_TARGETS: 98 for pyTarget in VALID_PY_TARGETS:
99 if pyTarget.startswith("3"): 99 if pyTarget.startswith("3"):

eric ide

mercurial