Remove weird argument for timer

This commit is contained in:
ChrisTerBeke 2019-01-14 11:06:16 +01:00
parent 402097f4d0
commit cd19eec98a

View File

@ -42,7 +42,7 @@ class CloudOutputDeviceManager:
self._api = CloudApiClient(self._account, self._onApiError) self._api = CloudApiClient(self._account, self._onApiError)
# Create a timer to update the remote cluster list # Create a timer to update the remote cluster list
self._update_timer = QTimer(application) self._update_timer = QTimer()
self._update_timer.setInterval(int(self.CHECK_CLUSTER_INTERVAL * 1000)) self._update_timer.setInterval(int(self.CHECK_CLUSTER_INTERVAL * 1000))
self._update_timer.setSingleShot(False) self._update_timer.setSingleShot(False)