From 977261e6848d9947c3b3f827e43fac6a29e3c9d5 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 373540a..248fe04 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()