( self )
| 33 | |
| 34 | |
| 35 | def Start( self ): |
| 36 | self._response_future = self.PostDataToHandlerAsync( self.request_data, |
| 37 | 'inlay_hints' ) |
| 38 | |
| 39 | def Done( self ): |
| 40 | return bool( self._response_future ) and self._response_future.done() |
nothing calls this directly
no test coverage detected