Passed
Push — master ( 849c80...dd2f8f )
by Steffen
01:24
created

PricingAdapterBase   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 2
rs 10
wmc 0
1
#!/usr/bin/python
2
# -*- coding: utf-8 -*-
3
4
from abc import ABCMeta
5
6
7
class PricingAdapterBase:
8
    __metaclass__ = ABCMeta
9