← Back to team overview

yade-users team mailing list archive

Re: AttributeError: 'Sphere' object has no attribute 'name'

 


Other possibility, perhaps THE python way:

   isinstance(s.shape,Sphere)

Ok, seems it is best way. Thanks!


You can run this to have .name back BTW:

   Serializable.name=property(lambda self:self.__class__.__name__)
   Sphere().name # 'Sphere'



--
Best regards,
Sergei D.



References