(self)
| 15 | return self.func(*self.args, **self.kwargs) |
| 16 | |
| 17 | def __str__(self): |
| 18 | return str(self()) |
| 19 | |
| 20 | def __format__(self, format_spec): |
| 21 | return format(self(), format_spec) |
nothing calls this directly
no outgoing calls
no test coverage detected