Skip to content
This repository was archived by the owner on Jun 30, 2026. It is now read-only.
This repository was archived by the owner on Jun 30, 2026. It is now read-only.

Type error in core/garbage_collector.py #702

Description

@sidneycadot

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))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions