Update the control outputs if the graph has changed.
(self)
| 358 | self._build() |
| 359 | |
| 360 | def update(self): |
| 361 | """Update the control outputs if the graph has changed.""" |
| 362 | if self._version != self._graph.version: |
| 363 | self._build() |
| 364 | return self |
| 365 | |
| 366 | def _build(self): |
| 367 | """Build the control outputs dictionary.""" |