On calling orm.Document.attribute 263 264 def **get**(self, instance, owner): --> 265 me = instance.**dict**.get(self._name) 266 if me: 267 if callable(me): return me() AttributeError: 'NoneType' object has no attribute '**dict**'
On calling orm.Document.attribute
263
264 def get(self, instance, owner):
--> 265 me = instance.dict.get(self._name)
266 if me:
267 if callable(me): return me()
AttributeError: 'NoneType' object has no attribute 'dict'