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"): |