File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,16 +29,17 @@ class NonePolicy(object):
2929 __slots__ = []
3030
3131 SKIP = 1
32- """ If this policy is selected, None values will aways be valid (validation routines will not be executed) """
32+ """ If this policy is selected, None values will always be valid (validation routines will not be executed) """
3333 FAIL = 2
34- """ If this policy is selected, None values will aways be invalid (validation routines will not be executed) """
34+ """ If this policy is selected, None values will always be invalid (validation routines will not be executed) """
3535 VALIDATE = 3
3636 """ If this policy is selected, None values will be treated exactly like other values and follow the same
3737 validation process."""
3838
3939
4040class NoneArgPolicy (NonePolicy ):
41- """ This enumeration extends `NonePolicy` to add policies specific to function input validation used in @validate... decorators """
41+ """ This enumeration extends `NonePolicy` to add policies specific to function input validation used in
42+ @validate... decorators """
4243
4344 __slots__ = []
4445
You can’t perform that action at this time.
0 commit comments