Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
japandotorg committed Jan 10, 2024
2 parents 14bb1f7 + b13bf07 commit 49655cd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion modmanager/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
from typing import TYPE_CHECKING, Any, Union

import discord
from redbot.core.bot import Red
from redbot.core import commands
from redbot.core.bot import Red
from redbot.core.config import Config

if TYPE_CHECKING:
Expand Down
4 changes: 2 additions & 2 deletions modmanager/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@

import discord
import discord.ext.tasks
from redbot.core.bot import Red
from redbot.core import commands, modlog
from redbot.core.bot import Red
from redbot.core.config import Config
from redbot.core.utils import AsyncIter

from .abc import CompositeMetaClass
from .manager import PunishmentManager
from .commands import Commands
from .manager import PunishmentManager

log: logging.Logger = logging.getLogger("red.seina.modmanager")

Expand Down
10 changes: 5 additions & 5 deletions modmanager/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@
import logging
from typing import (
TYPE_CHECKING,
Generic,
Protocol,
TypeVar,
Dict,
Generic,
Iterable,
List,
Optional,
Protocol,
Tuple,
TypeVar,
Union,
)
from typing_extensions import Self

import discord
from redbot.core.bot import Red
from redbot.core import modlog
from redbot.core.bot import Red
from typing_extensions import Self

from .abc import Manager
from .dataclass import Punishment
Expand Down
2 changes: 1 addition & 1 deletion tags/mixins/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"""

import asyncio
import logging
import contextvars
import logging
from copy import copy
from typing import Any, Dict, List, Optional, Type, Union

Expand Down

0 comments on commit 49655cd

Please sign in to comment.