(self, key)
| 342 | |
| 343 | class CallableMagicHat(object): |
| 344 | def __getattr__(self, key): |
| 345 | return lambda : key |
| 346 | |
| 347 | call_hat = CallableMagicHat() |
| 348 | with capture_output() as captured: |
nothing calls this directly
no outgoing calls
no test coverage detected