(self, *args, **kwargs)
| 888 | ) |
| 889 | |
| 890 | def __call__(self, *args, **kwargs): |
| 891 | return call_function( |
| 892 | methodcaller(self._attr), self._attr, (self._obj,) + args, kwargs |
| 893 | ) |
| 894 | |
| 895 | |
| 896 | for op in [ |
nothing calls this directly
no test coverage detected