kuon.watcher.adapters.bitskins.parser   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.parser.search_response import SearchResponseParser
4 1
from kuon.watcher.adapters.bitskins.parser.sold_history import SoldHistoryParser
5
6 1
__all__ = [
7
    SearchResponseParser.__name__,
8
    SoldHistoryParser.__name__
9
]
10