Get the session that the dag node belongs to.
(self)
| 153 | |
| 154 | @property |
| 155 | def session(self): |
| 156 | """Get the session that the dag node belongs to.""" |
| 157 | assert self._session is not None |
| 158 | return self._session |
| 159 | |
| 160 | @session.setter |
| 161 | def session(self, value): |
no outgoing calls