Loco-CTO / Rystal-V6-Experiments

Module level import not at the top of the file FLK-E402
Style
Minor
2 months ago2 months old
module level import not at top of file
 43
 44from config.loader import bot_owner_id, error_log_channel_id, lang
 45
 46from database.guild_handler import get_guild_language 47from module.embeds.generic import Embeds
 48
 49TOKEN = os.getenv("TOKEN")
module level import not at top of file
 41from nextcord.ext import commands
 42from termcolor import colored
 43
 44from config.loader import bot_owner_id, error_log_channel_id, lang 45
 46from database.guild_handler import get_guild_language
 47from module.embeds.generic import Embeds
module level import not at top of file
 39load_dotenv()
 40
 41from nextcord.ext import commands
 42from termcolor import colored 43
 44from config.loader import bot_owner_id, error_log_channel_id, lang
 45
module level import not at top of file
 33
 34import nest_asyncio
 35import nextcord
 36from dotenv import load_dotenv 37
 38nest_asyncio.apply()
 39load_dotenv()
module level import not at top of file
 32import traceback
 33
 34import nest_asyncio
 35import nextcord 36from dotenv import load_dotenv
 37
 38nest_asyncio.apply()