I fixed it in like 5 minutes, and having been struggling with pushing the package to the website… Darn CI pipeline.
Here is the diff if you are comfortable editing the code directly:
tracker/app.py
@@ -285,9 +291,8 @@ class TrackerGui(QtWidgets.QMainWindow, MainMenu):
c = psutil.cpu_percent()
r = psutil.virtual_memory().percent
-
- ui.progressBar_cpu.setValue(c)
- ui.progressBar_ram.setValue(r)
+ ui.progressBar_cpu.setValue(int(c))
+ ui.progressBar_ram.setValue(int(r))