| Total Complexity | 0 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 2 | """ |
||
| 3 | This module is designed to hold in-development components with their classes |
||
| 4 | and associated individual constraints (blocks) and groupings. |
||
| 5 | |||
| 6 | Requirements for documentation and unit tests are relaxed, |
||
| 7 | so code referred to within this module might not have production quality. |
||
| 8 | """ |
||
| 9 | |||
| 10 | from ._electrical_bus import ElectricalBus |
||
| 11 | |||
| 12 | __all__ = [ |
||
| 13 | "ElectricalBus", |
||
| 14 | ] |
||
| 15 |