Added more docstrings to forms and fields

This commit is contained in:
Antonio de la Rosa 2022-05-06 19:40:16 +02:00
parent 26dd863af8
commit d04a7121df
20 changed files with 79 additions and 9 deletions

View file

@ -1,6 +1,7 @@
from paramecio2.libraries.db.corefields import IntegerField
class PercentField(IntegerField):
"""Field used for save percent values from 0 to 100."""
def __init__(self, name, required=False):