Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 = []
-