Coverage for client/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1""" 

2client 

3 

4includes variables important to the function of the bot 

5""" 

6#pylint:disable=global-at-module-level 

7#pylint:disable=invalid-name 

8 

9import asyncio 

10 

11import discord 

12 

13global loop 

14loop = asyncio.new_event_loop() 

15 

16global BOT_STATUS 

17BOT_STATUS = False 

18 

19global client 

20client = discord.Client(loop=loop)