Projet

Général

Profil

0003-misc-call-parent-s-init-in-SchemaJSONDimension-41814.patch

Benjamin Dauvergne, 20 avril 2020 20:17

Télécharger (784 octets)

Voir les différences:

Subject: [PATCH 3/5] misc: call parent's init in SchemaJSONDimension (#41814)

Broken by:

  9a4d84a python3: avoid __slots__ conflicts with class variable (#40570)
 bijoe/engine.py | 1 +
 1 file changed, 1 insertion(+)
bijoe/engine.py
222 222
    type = 'string'
223 223

  
224 224
    def __init__(self, json_field, name):
225
        super(SchemaJSONDimension, self).__init__()
225 226
        name = str(name)
226 227
        self.name = name
227 228
        self.label = name.title()
228
-