uom.uomdata   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 9
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
1
"""UOM DataFrame."""
2 1
from __future__ import absolute_import
3
4 1
from pkg_resources import resource_filename
5
6 1
from pandas import read_csv
7
8
DF_UOM = read_csv(resource_filename("uom", "uom.csv"), index_col=0)
0 ignored issues
show
introduced by
Missing mandatory keyword argument 'iterator' in function call
Loading history...
9