Fix some remaining type errors

This commit is contained in:
Matthias
2023-03-24 20:56:18 +01:00
parent ad58bac810
commit 281dd7785e
2 changed files with 4 additions and 5 deletions

View File

@@ -454,7 +454,7 @@ class Telegram(RPCHandler):
# Notification disabled
return
message = self.compose_message(deepcopy(msg), msg_type)
message = self.compose_message(deepcopy(msg), msg_type) # type: ignore
if message:
self._send_msg(message, disable_notification=(noti == 'silent'))