You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In core/garbage_collector.py, a QTimer's start method is called with a float argument which should be an int argument. Probably in earlier versions of Python/PyQt5 this was implicitly handled, but at least in Python 3.10.6 this halts with a TypeError exception.
To fix, change core/garbage_collector.py line 46 from
self.timer.start(interval * 1000)
To
self.timer.start(round(interval * 1000))
The text was updated successfully, but these errors were encountered:
In core/garbage_collector.py, a QTimer's start method is called with a float argument which should be an int argument. Probably in earlier versions of Python/PyQt5 this was implicitly handled, but at least in Python 3.10.6 this halts with a TypeError exception.
To fix, change core/garbage_collector.py line 46 from
To
The text was updated successfully, but these errors were encountered: