Skip to content

Commit

Permalink
Restyled by reorder-python-imports
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed Sep 30, 2023
1 parent 708bfa9 commit 931c88a
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,27 @@
import urllib
from email import message
from os import listdir
from os.path import isfile, join
from os.path import isfile
from os.path import join
from pydoc import describe
from time import time

import discord
from discord import Embed, guild_only
from discord import Embed
from discord import guild_only
from discord.commands import option
from discord.ext import commands
from discord.ext.commands.core import command
from quickchart import QuickChart

from get_enviroment import (ANNOUNCEMENTS_CHANNEL, COMMAND_PREFIX,
DEV_SUGGESTIONS_CHANNEL, OWNER, SECURITY_CHANNEL,
SECURITY_GUILD, SWEAR_WORDS_LIST, TOKEN)
from get_enviroment import ANNOUNCEMENTS_CHANNEL
from get_enviroment import COMMAND_PREFIX
from get_enviroment import DEV_SUGGESTIONS_CHANNEL
from get_enviroment import OWNER
from get_enviroment import SECURITY_CHANNEL
from get_enviroment import SECURITY_GUILD
from get_enviroment import SWEAR_WORDS_LIST
from get_enviroment import TOKEN

# Language Loading

Expand Down

0 comments on commit 931c88a

Please sign in to comment.