| 203 | |
| 204 | |
| 205 | class _ValuedAttribute(Attribute[T]): |
| 206 | def __init__(self, value: T): |
| 207 | self._value = value |
| 208 | |
| 209 | @property |
| 210 | def value(self) -> T: |
| 211 | return self._value |
| 212 | |
| 213 | |
| 214 | class _BadAttribute(Attribute[T]): |
no outgoing calls
no test coverage detected
searching dependent graphs…