Skip to content

Commit 326dc57

Browse files
committed
[instanceworker] refactor location of the finished signal emit
1 parent 3f8786d commit 326dc57

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/slice/instanceworker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ def run(self):
7373
else:
7474
# returns the file out file path on success
7575
self.signals.result.emit(self.outpath)
76-
self.signals.finished.emit()
76+
77+
self.signals.finished.emit()
7778

7879
def instantiate_ttfont(self):
7980
self.ttfont = TTFont(self.font_model.fontpath)

0 commit comments

Comments
 (0)