From 3c3a318ae8781264f779614707248527b0998858 Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 13 Apr 2017 11:38:22 -0700 Subject: [PATCH] Improve channels_messages_create function signature --- disco/api/client.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/disco/api/client.py b/disco/api/client.py index 254bb62..9f826f5 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -88,13 +88,15 @@ class APIClient(LoggingClass): r = self.http(Routes.CHANNELS_MESSAGES_GET, dict(channel=channel, message=message)) return Message.create(self.client, r.json()) - def channels_messages_create(self, channel, content, nonce=None, tts=False, attachment=None, embed=None): + def channels_messages_create(self, channel, content=None, nonce=None, tts=False, attachment=None, embed=None): payload = { - 'content': content, 'nonce': nonce, 'tts': tts, } + if content: + payload['content'] = content + if embed: payload['embed'] = embed.to_dict()