def update_gui(self):
"""activates on Signal, updates GUI table from db"""
if time.time() - self._last_updated > 0.1:
self._last_updated = time.time()
self._raw_db_output = get_monitors()
self.populate_table()
文章目录