`p = Prop('blah',list())` or `p = Prop('blah',[])` ends up creating an error when trying to set -- `p.set([1,2,3]) TypeError: float() argument must be a string or a number` current fix is `p = Prop('blah',None) p.set(list()) `