Skip to content

Commit

Permalink
Style Reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
japandotorg authored Jul 8, 2024
1 parent 08ea845 commit 4e39138
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions info/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@
from typing import Dict, Final, List, Optional, Union, cast

import discord
from redbot.core.bot import Red
from redbot.cogs.mod.mod import Mod
from redbot.core import Config, app_commands, commands
from redbot.core.bot import Red
from redbot.core.errors import CogLoadError
from redbot.core import app_commands, commands, Config
from redbot.core.utils.chat_formatting import humanize_list

from .cache import Cache
from .abc import CompositeMetaClass
from .views import UIView
from .utils import guild_only_and_has_embed_links
from .cache import Cache
from .settings import SettingsCommands

from .utils import guild_only_and_has_embed_links
from .views import UIView

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

Expand Down
2 changes: 1 addition & 1 deletion info/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from redbot.core import commands
from redbot.core.utils.chat_formatting import humanize_list

from .abc import CompositeMetaClass, MixinMeta
from .cache import BadgeEmoji, DeviceEmoji, SelectEmoji, StatusEmoji
from .abc import MixinMeta, CompositeMetaClass


class SettingsCommands(MixinMeta, metaclass=CompositeMetaClass):
Expand Down
2 changes: 1 addition & 1 deletion info/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import discord
from redbot.core.bot import Red
from redbot.core import app_commands
from redbot.core.bot import Red


def guild_only_and_has_embed_links(interaction: discord.Interaction[Red]) -> bool:
Expand Down
4 changes: 2 additions & 2 deletions info/views.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import asyncio
import contextlib
import datetime
import functools
import contextlib
from typing import Any, Dict, List, Optional, Set, Union, cast

import discord
from redbot.cogs.mod.mod import Mod
from redbot.core.bot import Red
from redbot.core import commands
from redbot.core.bot import Red
from redbot.core.utils import AsyncIter
from redbot.core.utils.common_filters import filter_invites

Expand Down

0 comments on commit 4e39138

Please sign in to comment.