(file_path)
| 300 | self.signal_loading_new_run.emit() |
| 301 | |
| 302 | def cb(file_path): |
| 303 | result_dict = {} |
| 304 | try: |
| 305 | msg = self.gpc.open_data_file(file_path) |
| 306 | status = True |
| 307 | except Exception as ex: |
| 308 | msg = str(ex) |
| 309 | status = False |
| 310 | result_dict.update({"status": status, "msg": msg, "file_path": file_path}) |
| 311 | return result_dict |
| 312 | |
| 313 | self._compute_in_background(cb, self.slot_file_clicked, file_path=file_path) |
| 314 |
nothing calls this directly
no test coverage detected