def _set_property()

in pystemd/base.py [0:0]


    def _set_property(self, property_name, value):
        prop_access = self._properties_xml[property_name].attrib.get("access")
        if prop_access == "read":
            raise AttributeError("{} is read-only".format(property_name))
        else:
            raise NotImplementedError("have not implemented set property")