summaryrefslogtreecommitdiff
path: root/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'decorators.py')
-rw-r--r--decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decorators.py b/decorators.py
index 7f1ff29..fa7e187 100644
--- a/decorators.py
+++ b/decorators.py
@@ -94,7 +94,7 @@ class wproperty(object):
self.setfunc(obj, value)
def __get__(self, obj, cls):
- assert obj is not None
+ # assert obj is not None
return getattr(obj, self.attrname)