python-telegram-bot/telegram/replymarkup.py
2015-07-09 11:40:44 -03:00

9 lines
162 B
Python

#!/usr/bin/env python
class ReplyMarkup(object):
def to_json(self):
raise NotImplementedError
def __str__(self):
return self.to_json()