kuon.watcher.adapters   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 7
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 kuon.watcher.adapters.pricing_adapter import PricingAdapterBase
4 1
from kuon.watcher.adapters.sales_adapter import SalesAdapterBase
5
6
__all__ = [PricingAdapterBase, SalesAdapterBase]
7