(self, attr, bit)
| 236 | self.set_attribute(attr, val) |
| 237 | |
| 238 | def unset_attr_bit(self, attr, bit): |
| 239 | val = self.get_attribute(attr) |
| 240 | val.Value.Value = ua.ua_binary.unset_bit(val.Value.Value, bit) |
| 241 | self.set_attribute(attr, val) |
| 242 | |
| 243 | def set_read_only(self): |
| 244 | """ |
no test coverage detected