(self)
| 21 | |
| 22 | class Counter: |
| 23 | def __init__(self) -> None: |
| 24 | self.value: int = 0 # Field / variable annotation |
| 25 | |
| 26 | def add(self, offset: int) -> None: |
| 27 | value += offset # Oops: forgot "self." |
nothing calls this directly
no outgoing calls
no test coverage detected