(self, n: int = 0)
| 276 | |
| 277 | class Counter: |
| 278 | def __init__(self, n: int = 0) -> None: |
| 279 | self.n = 0 |
| 280 | |
| 281 | def increment(self, vid: object, ser: object) -> None: |
| 282 | self.n += 1 |
nothing calls this directly
no outgoing calls
no test coverage detected