Source code for deepmol.utils.cached_properties
import cached_property
[docs]class deepmol_cached_property(cached_property.cached_property):
def __set__(self, instance, value):
raise AttributeError("can't set attribute")
import cached_property
[docs]class deepmol_cached_property(cached_property.cached_property):
def __set__(self, instance, value):
raise AttributeError("can't set attribute")