toxygen/src/groupchat.py

12 lines
249 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-07-02 15:01:11 +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
2016-07-02 15:01:11 +00:00
def load_avatar(self, default_path='group.png'):
super().load_avatar(default_path)