]> git.llucax.com Git - software/sercom.git/commitdiff
Hacer funciones de validación más legibles.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 21 Feb 2007 04:08:53 +0000 (04:08 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 21 Feb 2007 04:08:53 +0000 (04:08 +0000)
sercom/subcontrollers/docente/__init__.py

index ff7e61b024ff72d01516f77d522d5e7002b58bdf..12fd14709e8e4213635eb99eec6310204626f414 100644 (file)
@@ -19,9 +19,14 @@ namepl = name + 's'
 #}}}
 
 #{{{ Validación
-def validate_get(id): return val.validate_get(cls, name, id)
-def validate_set(id, data): return val.validate_set(cls, name, id, data)
-def validate_new(data): return val.validate_new(cls, name, data)
+def validate_get(id):
+    return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+    return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+    return val.validate_new(cls, name, data)
 #}}}
 
 #{{{ Formulario