class SOTupleCol(SOPickleCol):
def createValidators(self):
- return [TupleValidator(name=self.name)] \
- + super(SOPickleCol, self).createValidators()
+ return [TupleValidator(name=self.name)]
class TupleCol(PickleCol):
baseClass = SOTupleCol
class SOParamsCol(SOUnicodeCol):
def createValidators(self):
- return [ParamsValidator(db_encoding=self.dbEncoding, name=self.name)] \
- + super(SOParamsCol, self).createValidators()
+ return [ParamsValidator(db_encoding=self.dbEncoding, name=self.name)]
class ParamsCol(UnicodeCol):
baseClass = SOParamsCol
% (self.id, self.nombre, self.descripcion)
#}}}
-class Comando(SQLObject): #{{{
+class Comando(InheritableSQLObject): #{{{
# Campos
comando = ParamsCol(length=255, notNone=True)
descripcion = UnicodeCol(length=255, default=None)