Commit b07e215d authored by Łukasz Nowak's avatar Łukasz Nowak

Remove plural.

parent b9369862
......@@ -31,7 +31,7 @@
from Constraint import Constraint
from DateTime import DateTime
boolean_types = (int, bool)
boolean_type_list = (int, bool)
class PropertyTypeValidity(Constraint):
"""
......@@ -45,7 +45,7 @@ class PropertyTypeValidity(Constraint):
'string': (str, ),
'text': (str, ),
'int': (int, ),
'boolean': boolean_types,
'boolean': boolean_type_list,
'float': (float, ),
'long': (long, ),
'tales': (str, ),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment