From 56655854cf36ace67aed33f047ddfe22985b6fbe Mon Sep 17 00:00:00 2001 From: atse Date: Thu, 11 Jul 2024 12:50:09 +0800 Subject: [PATCH] Fix grammar in info box on PID Autotune failure --- pytec/tec_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index d42317d..c964b16 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -332,7 +332,7 @@ class MainWindow(QtWidgets.QMainWindow): case PIDAutotuneState.STATE_FAILED: self.info_box.display_info_box( - "PID Autotune Failed", f"Channel {ch} PID Autotune is failed." + "PID Autotune Failed", f"Channel {ch} PID Autotune has failed." ) self.info_box.show()