(self)
| 5283 | |
| 5284 | |
| 5285 | def manage_attributes(self): # for cross section |
| 5286 | if self.data_desurveyed is None: |
| 5287 | QMessageBox.warning(self, "No data", "Please load desurveyed data first") |
| 5288 | return |
| 5289 | |
| 5290 | self.manage_attributes_dialog = ManageAttributesDialog(self.data_desurveyed, self.attributes_dict, self) |
| 5291 | self.manage_attributes_dialog.exec_() |
| 5292 | |
| 5293 | self.attributes_dict = self.manage_attributes_dialog.get_attributes_dict() |
| 5294 | |
| 5295 | def load_desurveyed_data(self): # for cross section |
| 5296 | filename, _ = QFileDialog.getOpenFileName(self, "Select desurveyed data file", "", "CSV files (*.csv)") |
nothing calls this directly
no test coverage detected