Passed
Push — master ( ec8b58...774f6d )
by Velizar
02:44
created

uom   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 8
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
1
"""Init of the module."""
2 1
from __future__ import absolute_import
3
4 1
from .unit_alias import unit_alias
5 1
from .uom import base_unit, conversion_factors, convert
6
7
__all__ = ['unit_alias', 'base_unit', 'conversion_factors', 'convert']
8