(self, target_id)
| 242 | return False |
| 243 | |
| 244 | def request_info_update(self, target_id): |
| 245 | if target_id not in self.targets: |
| 246 | self._update_info(target_id) |
| 247 | if self._info_cb: |
| 248 | self._info_cb.call(self.targets[target_id]) |
| 249 | return self.targets[target_id] |
| 250 | |
| 251 | def _update_info(self, target_id): |
| 252 | """ Call the command getInfo and fill up the information received in |
no test coverage detected