(self, /, *args, **kwargs)
| 1169 | |
| 1170 | |
| 1171 | def __call__(self, /, *args, **kwargs): |
| 1172 | # can't use self in-case a function / method we are mocking uses self |
| 1173 | # in the signature |
| 1174 | self._mock_check_sig(*args, **kwargs) |
| 1175 | self._increment_mock_call(*args, **kwargs) |
| 1176 | return self._mock_call(*args, **kwargs) |
| 1177 | |
| 1178 | |
| 1179 | def _mock_call(self, /, *args, **kwargs): |
nothing calls this directly
no test coverage detected