Open
Description
To continue on my previous issue, I would like to froze a sublcass but I can't manage to make it work. As you manage to make it work in BoxList
what am I missing ?
class toto(Box):
def __init__(self, valeur):
super(Box, self).__init__({"valeur": {"valeur": valeur}}, frozen_box=True)
truc = toto("truc")
truc.valeur = "toto"