Closed EnyMan closed 8 years ago
Thanks, @EnyMan but it's an optional parameter so I would prefer to keep it that way. All the changes we make should be backward compatible. Closing this.
thanks @os for the reply the parameter is sure optional but from what i've observed if you don't specify it, it works with the msg as if you passed "full", then what about adding it to the function and by default set it to parse="full" (None could work too)
def update(self, channel, ts, text, parse="full"):
return self.post('chat.update',
data={'channel': channel, 'ts': ts, 'text': text, 'parse': parse})
always do URL markup parse or add param for it? i would say that always is better in all cases