python-telegram-bot/telegram/replymarkup.py

10 lines
162 B
Python
Raw Normal View History

#!/usr/bin/env python
class ReplyMarkup(object):
def to_json(self):
raise NotImplementedError
2015-07-09 16:40:44 +02:00
def __str__(self):
return self.to_json()