(self)
| 193 | |
| 194 | class Child(ApiClass): |
| 195 | def __init__(self): |
| 196 | super().__init__() |
| 197 | self._value = "hello" # Conflicts |
| 198 | |
| 199 | a = Child() |
| 200 | print(f"{a.get()} and {a._value} should be different") |
nothing calls this directly
no outgoing calls
no test coverage detected