From c978a0dda61c29192e21baba6da3243072b408cf Mon Sep 17 00:00:00 2001 From: atse Date: Thu, 20 Jun 2024 17:09:29 +0800 Subject: [PATCH] thermostat_data_model -> thermostat --- pytec/model/{thermostat_data_model.py => thermostat.py} | 0 pytec/tec_qt.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pytec/model/{thermostat_data_model.py => thermostat.py} (100%) diff --git a/pytec/model/thermostat_data_model.py b/pytec/model/thermostat.py similarity index 100% rename from pytec/model/thermostat_data_model.py rename to pytec/model/thermostat.py diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index 03b24e3..126674b 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -7,7 +7,7 @@ from view.live_plot_view import LiveDataPlotter from view.ctrl_panel import CtrlPanel from view.info_box import InfoBox from model.pid_autotuner import PIDAutoTuner -from model.thermostat_data_model import WrappedClient, Thermostat +from model.thermostat import WrappedClient, Thermostat import json from autotune import PIDAutotuneState from qasync import asyncSlot, asyncClose