We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2973b89 commit 2003bbeCopy full SHA for 2003bbe
2 files changed
CHANGELOG
@@ -1,4 +1,5 @@
1
0.16.0
2
+ - enh: update curve list even when ancillary computation fails
3
- ref: migrate from pyqt5 to pyqt6 (#35)
4
- setup: bump nanite to 4.2.1
5
0.15.10
pyjibe/fd/main.py
@@ -503,10 +503,12 @@ def on_fit_all(self):
503
try:
504
self.tab_preprocess.apply_preprocessing(fdist)
505
self.tab_fit.fit_approach_retract(fdist, update_ui=False)
506
- self.curve_list_update(item=ii)
507
except BaseException as e:
508
errored.append([fdist.path, e.__class__.__name__, e.args])
+ finally:
509
+ self.curve_list_update(item=ii)
510
bar.setValue(ii+1)
511
+
512
# display qmap
513
self.tab_qmap.mpl_qmap_update()
514
if errored:
0 commit comments