kuon.watcher.adapters.pricing_adapter   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 8
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
1
#!/usr/bin/python
2
# -*- coding: utf-8 -*-
3 1
from abc import ABCMeta
4
5
6 1
class PricingAdapterBase(object):
7
    __metaclass__ = ABCMeta
8