(self, base: int)
| 57 | # Bound methods |
| 58 | class Calculator: |
| 59 | def __init__(self, base: int) -> None: |
| 60 | self.base = base |
| 61 | |
| 62 | def add(self, a: int, b: int) -> int: |
| 63 | return self.base + a + b |
nothing calls this directly
no outgoing calls
no test coverage detected