summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index 327d90a..2d041e9 100644
--- a/main.py
+++ b/main.py
@@ -100,7 +100,7 @@ def msg_status(update: Update, context: CallbackContext) -> None:
relay.connect()
response = relay.status()
- status = 'Включен' if response == 'on' else 'Выключен'
+ status = 'Включен ✅' if response == 'on' else 'Выключен ❌'
reply(update, status)
except Exception as e: