mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
9 lines
162 B
Python
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()
|