| 24 | |
| 25 | |
| 26 | class classproperty: |
| 27 | def __init__(self, f): |
| 28 | self.f = f |
| 29 | |
| 30 | def __get__(self, obj, owner): |
| 31 | return self.f(owner) |
| 32 | |
| 33 | |
| 34 | if TYPE_CHECKING: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…