def __init__(self, name, owner, conference, modificationDate=None, description='', createdInLocalServer=True, host='', password='', showRoom=False, showPass=False): Chatroom.__init__(self, name, owner, conference, modificationDate, createdInLocalServer, showRoom) self._description = description self._host = host self._password = password self._showPass = showPass
def __init__( self, name, owner, conference, modificationDate=None, description="", createdInLocalServer=True, host="", password="", showRoom=False, showPass=False, ): Chatroom.__init__(self, name, owner, conference, modificationDate, createdInLocalServer, showRoom) self._description = description self._host = host self._password = password self._showPass = showPass
def setValues(self, values): Chatroom.setValues(self, values) self._description = values['description'] self._host = values['host'] self._password = values['password'] self._showPass = values['showPass']
def setValues(self, values): Chatroom.setValues(self, values) self._description = values["description"] self._host = values["host"] self._password = values["password"] self._showPass = values["showPass"]