From d1461b952b6848136f3fa2f1075c4db3738b6a78 Mon Sep 17 00:00:00 2001 From: Stavros Korokithakis Date: Mon, 1 Jun 2020 14:41:26 +0300 Subject: Beautify --- signald/main.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'signald/main.py') diff --git a/signald/main.py b/signald/main.py index e66fad9..f10659a 100644 --- a/signald/main.py +++ b/signald/main.py @@ -151,7 +151,12 @@ class Signal: block: Whether to block while sending. If you choose not to block, you won't get an exception if there are any errors. """ - payload = {"type": "send", "username": self.username, "recipientGroupId": recipient_group_id, "messageBody": text} + payload = { + "type": "send", + "username": self.username, + "recipientGroupId": recipient_group_id, + "messageBody": text, + } self._send_command(payload, block) def chat_handler(self, regex, order=100): -- cgit v1.2.3-54-g00ecf