Returns the model's unique ID. Returns ------- str The UUID of the model.
(self)
| 218 | return self._name |
| 219 | |
| 220 | def get_uuid(self): |
| 221 | """Returns the model's unique ID. |
| 222 | |
| 223 | Returns |
| 224 | ------- |
| 225 | str |
| 226 | The UUID of the model. |
| 227 | |
| 228 | """ |
| 229 | return self._model_uuid |
| 230 | |
| 231 | def calculation_completed(self): |
| 232 | """Public method to check completion status of dependency tree |
no outgoing calls