Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/properties.py
diff options
context:
space:
mode:
authorisen <isen@isen-desktop.(none)>2009-09-23 19:50:49 (GMT)
committer isen <isen@isen-desktop.(none)>2009-09-23 19:50:49 (GMT)
commitaf047f0f82d9510cbfc54b02576e95effa802c78 (patch)
treef33ad4a4676cf2b2c6d7b8bcfa1e7a4deadc206d /tutorius/properties.py
parent228fc4cd41c0aac020ae9d2b656f0d2b617daed6 (diff)
clean unused properties
Diffstat (limited to 'tutorius/properties.py')
-rw-r--r--tutorius/properties.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/tutorius/properties.py b/tutorius/properties.py
index abf76e5..7423d25 100644
--- a/tutorius/properties.py
+++ b/tutorius/properties.py
@@ -199,7 +199,7 @@ class TStringProperty(TutoriusProperty):
class TArrayProperty(TutoriusProperty):
"""
- Represents an array of properties. Can have a maximum number of element
+ Represents an array of values. Can have a maximum number of element
limit, but there are no constraints on the content of the array.
"""
def __init__(self, value, min_size_limit=None, max_size_limit=None):
@@ -311,14 +311,4 @@ class TAddonProperty(TutoriusProperty):
return super(TAddonProperty, self).validate(value)
raise ValueError("Expected TPropContainer instance as TaddonProperty value")
-class TAddonListProperty(TutoriusProperty):
- """
- Reprensents an embedded tutorius Addon List Component.
- See TAddonProperty
- """
- def __init__(self):
- super(TAddonProperty, self).__init__()
- self.type = "addonlist"
- self.default = []
-