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

solph.buses.experimental   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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