toxygen/src/groupchat.py

12 lines
221 B
Python
Raw Normal View History

2016-06-24 12:20:05 +00:00
import contact
class Groupchat(contact.Contact):
2016-06-24 18:10:06 +00:00
def __init__(self, group_id, *args):
2016-06-24 12:20:05 +00:00
super().__init__(args)
2016-06-24 18:10:06 +00:00
self._id = group_id
2016-06-24 12:20:05 +00:00
def load_avatar(self):
2016-06-24 18:10:06 +00:00
super().load_avatar('group.png')