(self)
| 59 | self._add_client_methods(client_methods) |
| 60 | |
| 61 | def _get_client_methods(self): |
| 62 | client_methods = get_instance_public_methods(self._client) |
| 63 | return self._filter_client_methods(client_methods) |
| 64 | |
| 65 | def _filter_client_methods(self, client_methods): |
| 66 | filtered_methods = {} |
no test coverage detected