(self)
| 1087 | return rlt |
| 1088 | |
| 1089 | def __del__(self): |
| 1090 | # cleanly ignore all exceptions, cause session may already closed / destroyed. |
| 1091 | try: |
| 1092 | self._session.run(self._unload()) |
| 1093 | except Exception: # pylint: disable=broad-except |
| 1094 | pass |
| 1095 | |
| 1096 | @apply_docstring(GraphDAGNode._project_to_simple) |
| 1097 | def _project_to_simple(self, v_prop=None, e_prop=None): |