Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 0 |
1 | #!/usr/bin/python |
||
2 | # -*- coding: utf-8 -*- |
||
3 | 1 | from kuon.bitskins.api.interfaces import IPricing |
|
4 | 1 | from kuon.watcher.adapters import PricingAdapterBase |
|
5 | |||
6 | |||
7 | 1 | class PricingAdapter(PricingAdapterBase): |
|
8 | """Adapter for the Pricing Interface of BitSkins""" |
||
9 | |||
10 | 1 | def __init__(self, *args, **kwargs) -> None: |
|
11 | """Initializing function |
||
12 | |||
13 | :type args: list |
||
14 | :type kwargs: dict |
||
15 | """ |
||
16 | self.pricing_interface = IPricing(*args, **kwargs) |
||
17 |