Passed
Push — dev ( eccf95...cfc126 )
by Uwe
06:21 queued 04:51
created

solph.buses   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 18
rs 10
c 0
b 0
f 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