toxygen/toxygen/groupchat.py

13 lines
279 B
Python
Raw Normal View History

2016-06-24 12:20:05 +00:00
import contact
class GroupChat(contact.Contact):
2016-06-24 12:20:05 +00:00
def __init__(self, group_id, tox, *args):
2016-07-02 15:01:11 +00:00
super().__init__(*args)
2016-06-24 18:10:06 +00:00
self._id = group_id
self._tox = tox
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)