run   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 9
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A Bot.__init__() 0 3 1
1
from pincer import Client
2
3
from cogs import OnReadyCog, SayCog, ErrorHandler
4
5
6
class Bot(Client):
7
    def __init__(self, *args, **kwargs):
8
        super().load_cogs(OnReadyCog, SayCog, ErrorHandler)
9
        super().__init__(*args, **kwargs)
10
11
12
if __name__ == "__main__":
13
    Bot("XXXYOURBOTTOKENHEREXXX").run()
14