diff --git a/techsupport_bot/__init__.py b/techsupport_bot/__init__.py index c6c372060..fcc5820be 100644 --- a/techsupport_bot/__init__.py +++ b/techsupport_bot/__init__.py @@ -1,2 +1,3 @@ """Root module for accessing TechSupportBot.""" + from .bot import * diff --git a/techsupport_bot/base/__init__.py b/techsupport_bot/base/__init__.py index c0eb40ecc..feeb30230 100644 --- a/techsupport_bot/base/__init__.py +++ b/techsupport_bot/base/__init__.py @@ -1,4 +1,5 @@ """Module for providing base classes.""" + from .advanced import * from .auxiliary import * from .cogs import * diff --git a/techsupport_bot/base/advanced.py b/techsupport_bot/base/advanced.py index 9bec428c7..93595dd50 100644 --- a/techsupport_bot/base/advanced.py +++ b/techsupport_bot/base/advanced.py @@ -1,4 +1,5 @@ """Module for defining the advanced bot methods.""" + import asyncio import datetime import random diff --git a/techsupport_bot/base/databases.py b/techsupport_bot/base/databases.py index 71112d79b..9c8d3654e 100644 --- a/techsupport_bot/base/databases.py +++ b/techsupport_bot/base/databases.py @@ -1,6 +1,7 @@ """This file stores all of the postgres table declarations All models can be used by any extension """ + from __future__ import annotations import datetime diff --git a/techsupport_bot/bot.py b/techsupport_bot/bot.py index 25a257a97..e006abcc8 100644 --- a/techsupport_bot/bot.py +++ b/techsupport_bot/bot.py @@ -1,5 +1,6 @@ """The main bot functions. """ + import asyncio import threading diff --git a/techsupport_bot/botlogging/__init__.py b/techsupport_bot/botlogging/__init__.py index 37842e3cc..2f9b03509 100644 --- a/techsupport_bot/botlogging/__init__.py +++ b/techsupport_bot/botlogging/__init__.py @@ -1,5 +1,6 @@ """Exported loggers. """ + from .common import LogContext, LogLevel from .delayed import DelayedLogger from .events import EventLogger diff --git a/techsupport_bot/botlogging/common.py b/techsupport_bot/botlogging/common.py index c00ed1433..772246791 100644 --- a/techsupport_bot/botlogging/common.py +++ b/techsupport_bot/botlogging/common.py @@ -1,4 +1,5 @@ """A few common functions to help the logging system work smoothly""" + from dataclasses import dataclass from enum import Enum from typing import Optional diff --git a/techsupport_bot/botlogging/embed.py b/techsupport_bot/botlogging/embed.py index 99b0c8b50..69221e46f 100644 --- a/techsupport_bot/botlogging/embed.py +++ b/techsupport_bot/botlogging/embed.py @@ -1,5 +1,6 @@ """Module for log embeds. """ + import datetime import discord diff --git a/techsupport_bot/botlogging/events.py b/techsupport_bot/botlogging/events.py index 105da6bba..f985a2c97 100644 --- a/techsupport_bot/botlogging/events.py +++ b/techsupport_bot/botlogging/events.py @@ -1,4 +1,5 @@ """All of the discord event listeners where they used for logging""" + import datetime import sys from typing import Optional, Sequence, Union diff --git a/techsupport_bot/cogs/__init__.py b/techsupport_bot/cogs/__init__.py index 7cbdc7084..0d14c811f 100644 --- a/techsupport_bot/cogs/__init__.py +++ b/techsupport_bot/cogs/__init__.py @@ -1,4 +1,5 @@ """Module for providing builtin cogs.""" + from .admin import * from .config import * from .help import * diff --git a/techsupport_bot/error.py b/techsupport_bot/error.py index e9f7fcaa0..d63af249d 100644 --- a/techsupport_bot/error.py +++ b/techsupport_bot/error.py @@ -1,5 +1,6 @@ """Module for command error responses. """ + import munch from discord import app_commands from discord.ext import commands diff --git a/techsupport_bot/extensions/__init__.py b/techsupport_bot/extensions/__init__.py index b5cdefac5..613f6455e 100644 --- a/techsupport_bot/extensions/__init__.py +++ b/techsupport_bot/extensions/__init__.py @@ -2,6 +2,7 @@ Init file for the extensions This allows importing the extensions for tests """ + from .burn import * from .conch import * from .correct import * diff --git a/techsupport_bot/extensions/autoreact.py b/techsupport_bot/extensions/autoreact.py index 78fb4f3d2..40e3a13a9 100644 --- a/techsupport_bot/extensions/autoreact.py +++ b/techsupport_bot/extensions/autoreact.py @@ -1,4 +1,5 @@ """Module for the autoreact extension for the discord bot.""" + from base import auxiliary, cogs diff --git a/techsupport_bot/extensions/burn.py b/techsupport_bot/extensions/burn.py index 491e28d53..b34e90cce 100644 --- a/techsupport_bot/extensions/burn.py +++ b/techsupport_bot/extensions/burn.py @@ -3,6 +3,7 @@ This module has unit tests This modules requires no config, no databases, and no APIs """ + import random import discord diff --git a/techsupport_bot/extensions/cats.py b/techsupport_bot/extensions/cats.py index 5514029d1..67af01100 100644 --- a/techsupport_bot/extensions/cats.py +++ b/techsupport_bot/extensions/cats.py @@ -1,4 +1,5 @@ """Module for the urban dictionary extension for the discord bot.""" + from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/chatgpt.py b/techsupport_bot/extensions/chatgpt.py index 038aadfd3..59f4f85d5 100644 --- a/techsupport_bot/extensions/chatgpt.py +++ b/techsupport_bot/extensions/chatgpt.py @@ -9,6 +9,7 @@ Subcommands: gpt, gptutil (history, clean) Defines: None """ + import discord import expiringdict import ui diff --git a/techsupport_bot/extensions/conch.py b/techsupport_bot/extensions/conch.py index fa7374b17..c663a9995 100644 --- a/techsupport_bot/extensions/conch.py +++ b/techsupport_bot/extensions/conch.py @@ -3,6 +3,7 @@ This module has unit tests This modules requires no config, no databases, and no APIs """ + import random import discord diff --git a/techsupport_bot/extensions/correct.py b/techsupport_bot/extensions/correct.py index 4c97fbd8c..1614ccc31 100644 --- a/techsupport_bot/extensions/correct.py +++ b/techsupport_bot/extensions/correct.py @@ -3,6 +3,7 @@ This module has unit tests This modules requires no config, no databases, and no APIs """ + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/duck.py b/techsupport_bot/extensions/duck.py index 7cd102156..0394d12c2 100644 --- a/techsupport_bot/extensions/duck.py +++ b/techsupport_bot/extensions/duck.py @@ -1,4 +1,5 @@ """Module for the duck extension""" + import asyncio import datetime import functools diff --git a/techsupport_bot/extensions/dumpdbg.py b/techsupport_bot/extensions/dumpdbg.py index 31295b572..1aedc52c1 100644 --- a/techsupport_bot/extensions/dumpdbg.py +++ b/techsupport_bot/extensions/dumpdbg.py @@ -1,4 +1,5 @@ """Module for the dumpdbg command on discord bot.""" + import json import discord diff --git a/techsupport_bot/extensions/embed.py b/techsupport_bot/extensions/embed.py index 2ec9036ab..a6bf9a2b9 100644 --- a/techsupport_bot/extensions/embed.py +++ b/techsupport_bot/extensions/embed.py @@ -9,6 +9,7 @@ Subcommands: embed Defines: has_embed_role """ + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/factoids.py b/techsupport_bot/extensions/factoids.py index be36e4e22..aa6671955 100644 --- a/techsupport_bot/extensions/factoids.py +++ b/techsupport_bot/extensions/factoids.py @@ -10,6 +10,7 @@ alias, dealias Defines: has_manage_factoids_role """ + import asyncio import datetime import io diff --git a/techsupport_bot/extensions/giphy.py b/techsupport_bot/extensions/giphy.py index ea10fc74b..f57fbb06c 100644 --- a/techsupport_bot/extensions/giphy.py +++ b/techsupport_bot/extensions/giphy.py @@ -1,4 +1,5 @@ """Module for giphy extension in the bot.""" + import ui from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/google.py b/techsupport_bot/extensions/google.py index 8c3437376..53fc7c3aa 100644 --- a/techsupport_bot/extensions/google.py +++ b/techsupport_bot/extensions/google.py @@ -1,4 +1,5 @@ """Module for the google extension for the discord bot.""" + import discord import ui from base import auxiliary, cogs, extension diff --git a/techsupport_bot/extensions/grab.py b/techsupport_bot/extensions/grab.py index 50ad36e88..48379db9a 100644 --- a/techsupport_bot/extensions/grab.py +++ b/techsupport_bot/extensions/grab.py @@ -1,6 +1,7 @@ """ Module for defining the grabs extension """ + import random import discord diff --git a/techsupport_bot/extensions/hangman.py b/techsupport_bot/extensions/hangman.py index 16aaf8777..a5cc787e3 100644 --- a/techsupport_bot/extensions/hangman.py +++ b/techsupport_bot/extensions/hangman.py @@ -1,4 +1,5 @@ """Module for the hangman extension for the bot.""" + import datetime import uuid diff --git a/techsupport_bot/extensions/htd.py b/techsupport_bot/extensions/htd.py index dafc6d6ef..5a30bac86 100644 --- a/techsupport_bot/extensions/htd.py +++ b/techsupport_bot/extensions/htd.py @@ -1,6 +1,7 @@ """ Convert a value or evalute a mathematical expression to decimal, hex, binary, and ascii encoding """ + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/hug.py b/techsupport_bot/extensions/hug.py index 0dbf7f92e..f0102c8f2 100644 --- a/techsupport_bot/extensions/hug.py +++ b/techsupport_bot/extensions/hug.py @@ -1,4 +1,5 @@ """Module for the hug extention for the bot.""" + import random import discord diff --git a/techsupport_bot/extensions/iss.py b/techsupport_bot/extensions/iss.py index 8524f60ff..e3ded01ec 100644 --- a/techsupport_bot/extensions/iss.py +++ b/techsupport_bot/extensions/iss.py @@ -1,4 +1,5 @@ """Module to add the location of the ISS to the bot.""" + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/joke.py b/techsupport_bot/extensions/joke.py index e258f184d..6cdc215cf 100644 --- a/techsupport_bot/extensions/joke.py +++ b/techsupport_bot/extensions/joke.py @@ -1,4 +1,5 @@ """Module for the joke extension for the discord bot.""" + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/kanye.py b/techsupport_bot/extensions/kanye.py index d64b5c72e..2cb7d4fc9 100644 --- a/techsupport_bot/extensions/kanye.py +++ b/techsupport_bot/extensions/kanye.py @@ -1,4 +1,5 @@ """Module for the kanye extension for the discord bot.""" + import asyncio import random diff --git a/techsupport_bot/extensions/lenny.py b/techsupport_bot/extensions/lenny.py index 14e31e987..4cab4d259 100644 --- a/techsupport_bot/extensions/lenny.py +++ b/techsupport_bot/extensions/lenny.py @@ -1,4 +1,5 @@ """Module to add the extension lenny to the discord bot.""" + import random import discord diff --git a/techsupport_bot/extensions/linter.py b/techsupport_bot/extensions/linter.py index 1e7464822..8b717034f 100644 --- a/techsupport_bot/extensions/linter.py +++ b/techsupport_bot/extensions/linter.py @@ -9,6 +9,7 @@ Subcommands: .lint Defines: check_syntax """ + import json import discord diff --git a/techsupport_bot/extensions/logger.py b/techsupport_bot/extensions/logger.py index 6a503560f..2c0b2ca83 100644 --- a/techsupport_bot/extensions/logger.py +++ b/techsupport_bot/extensions/logger.py @@ -1,4 +1,5 @@ """Module for the logger extension for the discord bot.""" + import datetime import discord diff --git a/techsupport_bot/extensions/members.py b/techsupport_bot/extensions/members.py index e390fc290..7779491f4 100644 --- a/techsupport_bot/extensions/members.py +++ b/techsupport_bot/extensions/members.py @@ -9,6 +9,7 @@ Subcommands: None Defines: get_members_with_role """ + import datetime import io diff --git a/techsupport_bot/extensions/mock.py b/techsupport_bot/extensions/mock.py index d01e24a4d..9826fc990 100644 --- a/techsupport_bot/extensions/mock.py +++ b/techsupport_bot/extensions/mock.py @@ -1,4 +1,5 @@ """Module for the mock extension for the discord bot.""" + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/news.py b/techsupport_bot/extensions/news.py index 18ff0c349..4e0e04976 100644 --- a/techsupport_bot/extensions/news.py +++ b/techsupport_bot/extensions/news.py @@ -1,4 +1,5 @@ """Module for the news extension for the discord bot.""" + import enum import random diff --git a/techsupport_bot/extensions/poll.py b/techsupport_bot/extensions/poll.py index a0c154aaa..877be74d3 100644 --- a/techsupport_bot/extensions/poll.py +++ b/techsupport_bot/extensions/poll.py @@ -1,4 +1,5 @@ """Module for the poll extension for the discord bot.""" + import asyncio import io import json diff --git a/techsupport_bot/extensions/protect.py b/techsupport_bot/extensions/protect.py index 65ed00df6..9023062e2 100644 --- a/techsupport_bot/extensions/protect.py +++ b/techsupport_bot/extensions/protect.py @@ -1,4 +1,5 @@ """Module for the protect extension of the discord bot.""" + import datetime import io import re diff --git a/techsupport_bot/extensions/relay.py b/techsupport_bot/extensions/relay.py index 49682813e..eec4491a8 100644 --- a/techsupport_bot/extensions/relay.py +++ b/techsupport_bot/extensions/relay.py @@ -1,4 +1,5 @@ """This is the discord side of the IRC->Discord relay""" + from typing import Dict, List, Union import discord diff --git a/techsupport_bot/extensions/role.py b/techsupport_bot/extensions/role.py index 4ccd39dc2..395e87274 100644 --- a/techsupport_bot/extensions/role.py +++ b/techsupport_bot/extensions/role.py @@ -1,5 +1,6 @@ """The file to hold the role extension This extension is slash commands""" + from __future__ import annotations from typing import TYPE_CHECKING diff --git a/techsupport_bot/extensions/roll.py b/techsupport_bot/extensions/roll.py index daff4f494..96585e577 100644 --- a/techsupport_bot/extensions/roll.py +++ b/techsupport_bot/extensions/roll.py @@ -1,4 +1,5 @@ """Module for the roll extension for the discord bot.""" + import random import discord diff --git a/techsupport_bot/extensions/rules.py b/techsupport_bot/extensions/rules.py index 1b2840e4c..bdb316f7c 100644 --- a/techsupport_bot/extensions/rules.py +++ b/techsupport_bot/extensions/rules.py @@ -1,4 +1,5 @@ """Module for the rules extension of the discord bot.""" + import datetime import io import json diff --git a/techsupport_bot/extensions/slowmode.py b/techsupport_bot/extensions/slowmode.py index c8a03bd0d..617de385e 100644 --- a/techsupport_bot/extensions/slowmode.py +++ b/techsupport_bot/extensions/slowmode.py @@ -59,6 +59,7 @@ async def slowmode( channel = interaction.channel await channel.edit(slowmode_delay=seconds) embed = auxiliary.prepare_confirm_embed( - f"Slowmode successfully modified in channel {channel.mention} to {seconds} seconds" + f"Slowmode successfully modified in channel {channel.mention} to" + f" {seconds} seconds" ) await interaction.response.send_message(embed=embed) diff --git a/techsupport_bot/extensions/spotify.py b/techsupport_bot/extensions/spotify.py index 06106cc7c..4e2696028 100644 --- a/techsupport_bot/extensions/spotify.py +++ b/techsupport_bot/extensions/spotify.py @@ -1,4 +1,5 @@ """Module for the Spotify extension of the discord bot.""" + import aiohttp import ui from base import auxiliary, cogs diff --git a/techsupport_bot/extensions/translate.py b/techsupport_bot/extensions/translate.py index 8f6f217d4..30b50ef93 100644 --- a/techsupport_bot/extensions/translate.py +++ b/techsupport_bot/extensions/translate.py @@ -1,4 +1,5 @@ """Module for the translate extension for the discord bot.""" + from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/urban.py b/techsupport_bot/extensions/urban.py index 368024fdf..59d6ec7f2 100644 --- a/techsupport_bot/extensions/urban.py +++ b/techsupport_bot/extensions/urban.py @@ -1,4 +1,5 @@ """Module for the urban dictionary extension for the discord bot.""" + import discord import ui from base import auxiliary, cogs diff --git a/techsupport_bot/extensions/weather.py b/techsupport_bot/extensions/weather.py index cb3bfd455..f6ef2c7e3 100644 --- a/techsupport_bot/extensions/weather.py +++ b/techsupport_bot/extensions/weather.py @@ -1,4 +1,5 @@ """Module for the weather extension for the discord bot.""" + import discord import munch from base import auxiliary, cogs diff --git a/techsupport_bot/extensions/who.py b/techsupport_bot/extensions/who.py index 07c12d29f..f5a3d0c92 100644 --- a/techsupport_bot/extensions/who.py +++ b/techsupport_bot/extensions/who.py @@ -1,4 +1,5 @@ """Module for the who extension for the discord bot.""" + import datetime import io diff --git a/techsupport_bot/extensions/wolfram.py b/techsupport_bot/extensions/wolfram.py index c790419c4..ca77baaea 100644 --- a/techsupport_bot/extensions/wolfram.py +++ b/techsupport_bot/extensions/wolfram.py @@ -1,4 +1,5 @@ """Module for the wolfram extension for the discord bot.""" + import discord from base import auxiliary, cogs from discord.ext import commands diff --git a/techsupport_bot/extensions/wyr.py b/techsupport_bot/extensions/wyr.py index e4dd4592a..2a908effe 100644 --- a/techsupport_bot/extensions/wyr.py +++ b/techsupport_bot/extensions/wyr.py @@ -1,4 +1,5 @@ """Module for the wyr extension for the discord bot.""" + import random import discord diff --git a/techsupport_bot/extensions/xkcd.py b/techsupport_bot/extensions/xkcd.py index 22b334473..54dd6b0b9 100644 --- a/techsupport_bot/extensions/xkcd.py +++ b/techsupport_bot/extensions/xkcd.py @@ -1,4 +1,5 @@ """Module for the xkcd extension for the discord bot.""" + import random import discord diff --git a/techsupport_bot/ircrelay/__init__.py b/techsupport_bot/ircrelay/__init__.py index 05d75e783..1fd809266 100644 --- a/techsupport_bot/ircrelay/__init__.py +++ b/techsupport_bot/ircrelay/__init__.py @@ -1,3 +1,4 @@ """Allows python to find the irc packages""" + from .formatting import * from .irc import * diff --git a/techsupport_bot/ircrelay/formatting.py b/techsupport_bot/ircrelay/formatting.py index 0a54c92ba..9d8c24823 100644 --- a/techsupport_bot/ircrelay/formatting.py +++ b/techsupport_bot/ircrelay/formatting.py @@ -1,4 +1,5 @@ """A bunch of functions to format messages going to and from IRC""" + from typing import Dict, List import discord diff --git a/techsupport_bot/ircrelay/irc.py b/techsupport_bot/ircrelay/irc.py index 88b531f11..62a77f212 100644 --- a/techsupport_bot/ircrelay/irc.py +++ b/techsupport_bot/ircrelay/irc.py @@ -1,5 +1,6 @@ """This is the core of the IRC bot. It connects to IRC and handles message tranmissions to discord""" + import asyncio import logging import os diff --git a/techsupport_bot/main.py b/techsupport_bot/main.py index ede8663ea..c5de17665 100644 --- a/techsupport_bot/main.py +++ b/techsupport_bot/main.py @@ -1,5 +1,6 @@ """TechSupport Bot main thread. """ + import asyncio import logging import os diff --git a/techsupport_bot/tests/helpers/__init__.py b/techsupport_bot/tests/helpers/__init__.py index c55ed249a..ca13f1f7f 100644 --- a/techsupport_bot/tests/helpers/__init__.py +++ b/techsupport_bot/tests/helpers/__init__.py @@ -1,6 +1,7 @@ """ Init file for the test helpers. """ + from .asset import * from .attachment import * from .bot import * diff --git a/techsupport_bot/tests/test_base_auxiliary.py b/techsupport_bot/tests/test_base_auxiliary.py index 9dc483257..d9298499a 100644 --- a/techsupport_bot/tests/test_base_auxiliary.py +++ b/techsupport_bot/tests/test_base_auxiliary.py @@ -3,7 +3,6 @@ This contains 23 tests """ - import importlib from unittest.mock import AsyncMock, MagicMock, call diff --git a/techsupport_bot/tests/test_extensions_emoji.py b/techsupport_bot/tests/test_extensions_emoji.py index 1ffd1bd39..9f06ba7fd 100644 --- a/techsupport_bot/tests/test_extensions_emoji.py +++ b/techsupport_bot/tests/test_extensions_emoji.py @@ -3,7 +3,6 @@ This contains 14 tests """ - import importlib from unittest.mock import AsyncMock, MagicMock diff --git a/techsupport_bot/tests/test_extensions_hello.py b/techsupport_bot/tests/test_extensions_hello.py index fa2741b00..df3093fc7 100644 --- a/techsupport_bot/tests/test_extensions_hello.py +++ b/techsupport_bot/tests/test_extensions_hello.py @@ -3,7 +3,6 @@ This contains 1 test """ - import importlib from unittest.mock import AsyncMock diff --git a/techsupport_bot/tests/test_extensions_mock.py b/techsupport_bot/tests/test_extensions_mock.py index 073d59408..720f85cda 100644 --- a/techsupport_bot/tests/test_extensions_mock.py +++ b/techsupport_bot/tests/test_extensions_mock.py @@ -2,6 +2,7 @@ This is a file to test the extensions/mock.py file This contains 8 tests """ + import importlib from unittest.mock import AsyncMock, MagicMock, patch diff --git a/techsupport_bot/tests/test_extensions_wyr.py b/techsupport_bot/tests/test_extensions_wyr.py index d552af4b6..ee4dfa553 100644 --- a/techsupport_bot/tests/test_extensions_wyr.py +++ b/techsupport_bot/tests/test_extensions_wyr.py @@ -2,6 +2,7 @@ This is a file to test the extensions/wyr.py file This contains 7 tests """ + import importlib import random from unittest.mock import AsyncMock, MagicMock, mock_open, patch diff --git a/techsupport_bot/ui/__init__.py b/techsupport_bot/ui/__init__.py index f94802d35..db1ac9451 100644 --- a/techsupport_bot/ui/__init__.py +++ b/techsupport_bot/ui/__init__.py @@ -1,4 +1,5 @@ """Allow the UI files to be imported""" + from .application import * from .appnotice import * from .confirm import * diff --git a/techsupport_bot/ui/application.py b/techsupport_bot/ui/application.py index 73e253622..12ecf283f 100644 --- a/techsupport_bot/ui/application.py +++ b/techsupport_bot/ui/application.py @@ -1,4 +1,5 @@ """This is the ui object for the popup application form""" + import traceback import discord diff --git a/techsupport_bot/ui/appnotice.py b/techsupport_bot/ui/appnotice.py index 3ae9b3885..2bd73f0e1 100644 --- a/techsupport_bot/ui/appnotice.py +++ b/techsupport_bot/ui/appnotice.py @@ -1,4 +1,5 @@ """This contians the view for the periodic application notice to users""" + import discord diff --git a/techsupport_bot/ui/confirm.py b/techsupport_bot/ui/confirm.py index ad8be90a2..493c9c50f 100644 --- a/techsupport_bot/ui/confirm.py +++ b/techsupport_bot/ui/confirm.py @@ -1,4 +1,5 @@ """A class to handle the confirm request""" + from enum import Enum, auto import discord diff --git a/techsupport_bot/ui/roleselect.py b/techsupport_bot/ui/roleselect.py index 265829268..9e60b1bdb 100644 --- a/techsupport_bot/ui/roleselect.py +++ b/techsupport_bot/ui/roleselect.py @@ -1,4 +1,5 @@ """This holds the UI view used by the role extension""" + import discord