mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 02:41:06 -05:00
loads of import fixes
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
"""Birthday cog for Red-DiscordBot"""
|
||||
from redbot.core.bot import Red
|
||||
from redbot.core.bot import Red # type: ignore
|
||||
import logging
|
||||
import discord
|
||||
from discord.app_commands.errors import CommandAlreadyRegistered
|
||||
import discord # type: ignore
|
||||
from discord.app_commands.errors import CommandAlreadyRegistered # type: ignore
|
||||
from .birthday import Birthday, birthday_context_menu
|
||||
|
||||
logger = logging.getLogger("Birthday")
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import discord
|
||||
from redbot.core import commands, checks, app_commands
|
||||
from redbot.core.bot import Red
|
||||
from redbot.core.config import Config
|
||||
import discord # type: ignore
|
||||
from redbot.core import commands, checks, app_commands # type: ignore
|
||||
from redbot.core.bot import Red # type: ignore
|
||||
from redbot.core.config import Config # type: ignore
|
||||
from datetime import datetime, time, timedelta
|
||||
from zoneinfo import ZoneInfo, ZoneInfoNotFoundError
|
||||
import random
|
||||
|
||||
Reference in New Issue
Block a user