pincer_bot.__main__   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 0
1
import logging
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
2
3
from pincer import Intents
4
from pincer_bot.bot import Bot
5
6
7
logging.basicConfig(level=logging.DEBUG)
8
9
bot = Bot(intents=Intents.all())
10
bot.run()
11