(self)
| 58 | self.open_line.text() |
| 59 | |
| 60 | def load_config(self): |
| 61 | cwd = os.getcwd() |
| 62 | config = QtWidgets.QFileDialog.getOpenFileName( |
| 63 | self, "Select a configuration file", cwd, "Config files (*.yaml)" |
| 64 | ) |
| 65 | if not config: |
| 66 | return |
| 67 | self.config = config[0] |
| 68 | self.open_line.setText(self.config) |
| 69 | self.ok_button.setFocus() |
| 70 | |
| 71 | def open_project(self): |
| 72 | if self.config == "": |
no outgoing calls
no test coverage detected