(self)
| 413 | return create_context_node(context_type, self, self._graph, *args, **kwargs) |
| 414 | |
| 415 | def __del__(self): |
| 416 | try: |
| 417 | self.session.run(self._unload()) |
| 418 | except Exception: # pylint: disable=broad-except |
| 419 | pass |
| 420 | |
| 421 | def _unload(self): |
| 422 | """Unload this app from graphscope engine. |