Commit 71b20eea authored by Łukasz Nowak's avatar Łukasz Nowak

Remove plural.

parent 0113a247
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
from Constraint import Constraint from Constraint import Constraint
from DateTime import DateTime from DateTime import DateTime
boolean_types = (int, bool) boolean_type_list = (int, bool)
class PropertyTypeValidity(Constraint): class PropertyTypeValidity(Constraint):
""" """
...@@ -45,7 +45,7 @@ class PropertyTypeValidity(Constraint): ...@@ -45,7 +45,7 @@ class PropertyTypeValidity(Constraint):
'string': (str, ), 'string': (str, ),
'text': (str, ), 'text': (str, ),
'int': (int, ), 'int': (int, ),
'boolean': boolean_types, 'boolean': boolean_type_list,
'float': (float, ), 'float': (float, ),
'long': (long, ), 'long': (long, ),
'tales': (str, ), '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