Store the instance when a new learning instance is created. Args: instance: learning instance
(self, instance)
| 1404 | self._interactive_instance_list.append(instance) |
| 1405 | |
| 1406 | def _attach_learning_instance(self, instance): |
| 1407 | """Store the instance when a new learning instance is created. |
| 1408 | Args: |
| 1409 | instance: learning instance |
| 1410 | """ |
| 1411 | self._learning_instance_list.append(instance) |
| 1412 | |
| 1413 | def _close_interactive_instances(self): |
| 1414 | for instance in self._interactive_instance_list: |
no test coverage detected