Fixed circular import.
This commit is contained in:
9
bot_instance.py
Normal file
9
bot_instance.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from discord.ext import commands
|
||||
import discord
|
||||
import threading
|
||||
|
||||
intents = discord.Intents.default()
|
||||
bot = commands.Bot(command_prefix="!", intents=intents)
|
||||
|
||||
bot.tracked_games = []
|
||||
bot.tracked_games_lock = threading.Lock()
|
||||
Reference in New Issue
Block a user