lagom.version   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 7
ccs 2
cts 3
cp 0.6667
rs 10
c 0
b 0
f 0
1
"""Module for tracking the version of the library"""
2
3 1
__version__ = "2.7.0"
4
5 1
if __name__ == "__main__":
6
    print(__version__)
7