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
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
1"""
2client
4includes variables important to the function of the bot
5"""
6#pylint:disable=global-at-module-level
7#pylint:disable=invalid-name
9import asyncio
11import discord
13global loop
14loop = asyncio.new_event_loop()
16global BOT_STATUS
17BOT_STATUS = False
19global client
20client = discord.Client(loop=loop)