kuon.watcher.adapters.bitskins   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 6
dl 0
loc 9
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.bitskins.pricing_adapter import PricingAdapter
4 1
from kuon.watcher.adapters.bitskins.sales_adapter import BitSkinsSalesAdapter
5
6 1
__all__ = [
7
    PricingAdapter.__name__,
8
    BitSkinsSalesAdapter.__name__
9
]
10