Output for json files (json graph specification) :rtype: dict
(self)
| 425 | return ret |
| 426 | |
| 427 | def to_dict(self): |
| 428 | """ |
| 429 | Output for json files (json graph specification) |
| 430 | :rtype: dict |
| 431 | """ |
| 432 | return { |
| 433 | 'uid': self.uid, |
| 434 | 'label': self.label(), |
| 435 | 'name': self.name(), |
| 436 | } |
| 437 | |
| 438 | |
| 439 | def _wrap_as_variables(sequence): |
no test coverage detected