Skip to content
Snippets Groups Projects
Commit 6e51e6c5 authored by Swen Vermeul's avatar Swen Vermeul
Browse files

added call possibility for properties

parent e6f7a082
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,16 @@ class PropertyHolder():
props[code] = value
return props
def __call__(self, prop, val=None):
"""Yet another way to set/get the values to a property:
sample.props('$name', 'new value')
sample.props('$name') # returns 'new value'
"""
if val is None:
return getattr(self, prop)
else:
setattr(self, prop, val)
def __getitem__(self, key):
"""For properties that contain either a dot or a dash or any other non-valid method character,
a user can use a key-lookup instead, e.g. sample.props['my-weird.property-name']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment