Skip to content

Commit

Permalink
spool: fix setMaximum type error
Browse files Browse the repository at this point in the history
  • Loading branch information
emolch committed Dec 13, 2023
1 parent 376efb9 commit 200972b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kite/spool/spool.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def progressStarted(self, args):

self.progress.setWindowTitle("Processing...")
self.progress.setLabelText(text)
self.progress.setMaximum(maximum)
self.progress.setMaximum(int(maximum))
self.progress.setValue(0)

@QtCore.pyqtSlot()
Expand Down

0 comments on commit 200972b

Please sign in to comment.