Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sebkuip committed Jan 30, 2024
1 parent da51441 commit a7bf9e0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cogs/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,21 @@
import sys
import typing
import zipfile
from importlib import invalidate_caches
from difflib import get_close_matches
from importlib import invalidate_caches
from pathlib import Path, PurePath
from re import match
from site import USER_SITE
from subprocess import PIPE

import discord
from discord.ext import commands

from packaging.version import Version

from core import checks
from core.models import PermissionLevel, getLogger
from core.paginator import EmbedPaginatorSession
from core.utils import truncate, trigger_typing
from core.utils import trigger_typing, truncate

logger = getLogger(__name__)

Expand Down Expand Up @@ -645,7 +644,7 @@ async def plugins_registry(self, ctx, *, plugin_name: typing.Union[int, str] = N
if registry == {}:
embed = discord.Embed(
color=self.bot.error_color,
description='Registry is empty. This could be because it failed to load.'
description="Registry is empty. This could be because it failed to load.",
)
await ctx.send(embed=embed)
return
Expand Down

0 comments on commit a7bf9e0

Please sign in to comment.