From 353daf87595f85bde7db1fe119e8ae5f44c380d8 Mon Sep 17 00:00:00 2001 From: "{{ github.actor }}" Date: Fri, 13 Oct 2023 18:18:53 +0000 Subject: [PATCH] Style Reformatting --- threadopener/_tagscript.py | 2 +- threadopener/commands.py | 2 +- threadopener/core.py | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/threadopener/_tagscript.py b/threadopener/_tagscript.py index c8dfcfa0..9acfa7da 100644 --- a/threadopener/_tagscript.py +++ b/threadopener/_tagscript.py @@ -1,4 +1,4 @@ -from typing import List, Final, Dict, Any, final +from typing import Any, Dict, Final, List, final import discord import TagScriptEngine as tse diff --git a/threadopener/commands.py b/threadopener/commands.py index ad104df0..80f960ee 100644 --- a/threadopener/commands.py +++ b/threadopener/commands.py @@ -28,8 +28,8 @@ from redbot.core import commands from redbot.core.utils.chat_formatting import humanize_list -from .abc import MixinMeta from ._tagscript import TagscriptConverter +from .abc import MixinMeta class Commands(MixinMeta): diff --git a/threadopener/core.py b/threadopener/core.py index ed6841a7..cc29dbeb 100644 --- a/threadopener/core.py +++ b/threadopener/core.py @@ -23,7 +23,7 @@ """ import logging -from typing import Dict, Final, List, Optional, Tuple, Union, Any +from typing import Any, Dict, Final, List, Optional, Tuple, Union import discord import TagScriptEngine as tse @@ -31,15 +31,15 @@ from redbot.core.bot import Red from redbot.core.utils.chat_formatting import humanize_list -from .abc import CompositeMetaClass -from .commands import Commands -from .cooldown import ThreadCooldown from ._tagscript import ( - process_tagscript, + TAGSCRIPT_LIMIT, TagCharacterLimitReached, + process_tagscript, thread_message, - TAGSCRIPT_LIMIT, ) +from .abc import CompositeMetaClass +from .commands import Commands +from .cooldown import ThreadCooldown log: logging.Logger = logging.getLogger("red.seina.threadopener")