toxygen/toxygen/groupchat.py

14 lines
286 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, tox, *args):
2016-07-02 15:01:11 +00:00
super().__init__(*args)
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)
# TODO: get peers list and add other methods