summaryrefslogtreecommitdiff
path: root/ricky/pbbreaker/__init__.py
blob: cb76b156de36e269deb2d35c26decc0dbde25d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from ricky.pb import Pb
from ricky.pbbreaker.params import Params


class PbBreaker(Pb):
    def __init__(self):
        super(PbBreaker, self).__init__()

    def params_init(self):
        new_params = Params()
        new_params.api = self
        return new_params