Add missing typing

This commit is contained in:
Jaime van Kessel 2020-06-24 15:28:41 +02:00
parent 68807d99d2
commit 27277d4e54
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -51,7 +51,7 @@ class MachineErrorChecker(QObject):
self._error_check_timer.setInterval(100)
self._error_check_timer.setSingleShot(True)
self._keys_to_check = set()
self._keys_to_check = set() # type: Set[str]
def initialize(self) -> None:
self._error_check_timer.timeout.connect(self._rescheduleCheck)