(self, obj, type=None)
| 8 | self.name = function.__name__ |
| 9 | |
| 10 | def __get__(self, obj, type=None) -> object: |
| 11 | obj.__dict__[self.name] = self.function(obj) |
| 12 | return obj.__dict__[self.name] |
| 13 | |
| 14 | def __set__(self, obj, value): |
| 15 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected