GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 2cf2b4...2a38ae )
by samuel
01:07
created

Paystack.__init__()   A

Complexity

Conditions 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 6
rs 9.4285
1
"""Entry point defined here."""
2
from paystackapi.transaction import Transaction
3
from paystackapi.customer import Customer
4
from paystackapi.plan import Plan
5
from paystackapi.base import PayStackBase
6
7
8
class Paystack(PayStackBase):
9
    """Base class defined for PayStack Instance Method."""
10
11
    def __init__(self, secret_key=None):
12
        """Instantiate Basic Classes to call here."""
13
        PayStackBase.__init__(self, secret_key=secret_key)
14
        self.transaction = Transaction
15
        self.customer = Customer
16
        self.plan = Plan
17