Browse Source

Improve channels_messages_create function signature

feature/storage
Andrei 8 years ago
parent
commit
3c3a318ae8
  1. 6
      disco/api/client.py

6
disco/api/client.py

@ -88,13 +88,15 @@ class APIClient(LoggingClass):
r = self.http(Routes.CHANNELS_MESSAGES_GET, dict(channel=channel, message=message)) r = self.http(Routes.CHANNELS_MESSAGES_GET, dict(channel=channel, message=message))
return Message.create(self.client, r.json()) 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 = { payload = {
'content': content,
'nonce': nonce, 'nonce': nonce,
'tts': tts, 'tts': tts,
} }
if content:
payload['content'] = content
if embed: if embed:
payload['embed'] = embed.to_dict() payload['embed'] = embed.to_dict()

Loading…
Cancel
Save