(self, offset: int)
| 24 | self.value: int = 0 # Field / variable annotation |
| 25 | |
| 26 | def add(self, offset: int) -> None: |
| 27 | value += offset # Oops: forgot "self." |
| 28 | |
| 29 | def get(self) -> int: |
| 30 | self.value # Oops: forgot "return" |
no outgoing calls
no test coverage detected