mirror of
https://github.com/CopterExpress/clever-show.git
synced 2026-05-30 08:49:33 +00:00
Fix telemetry and improts
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import math
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import math
|
||||
import time
|
||||
import subprocess
|
||||
from contextlib import suppress
|
||||
from functools import partialmethod
|
||||
|
||||
|
||||
@@ -271,7 +271,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
||||
def update_table_data(self, client, telems: dict):
|
||||
for key, value in telems.items():
|
||||
try:
|
||||
col = self.model.index(key)
|
||||
col = self.model.columns.index(key)
|
||||
except ValueError:
|
||||
logging.error(f"No column {key} present!")
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user