| Total Complexity | 0 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 2 | |||
| 3 | """ |
||
| 4 | This module is designed to hold busses with their classes and |
||
| 5 | associated individual constraints (blocks) and groupings. Therefore this |
||
| 6 | module holds the class definition and the block directly located by each other. |
||
| 7 | |||
| 8 | Note that only mature code is imported, |
||
| 9 | experimental code should be included in oemof.experimental. |
||
| 10 | """ |
||
| 11 | |||
| 12 | from . import experimental |
||
| 13 | from ._bus import Bus |
||
| 14 | |||
| 15 | __all__ = [ |
||
| 16 | "experimental", |
||
| 17 | "Bus", |
||
| 18 | ] |
||
| 19 |