From 2b51e5e736ca73619cccda595657895436519501 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 10 Dec 2023 04:33:52 -0500 Subject: [PATCH] [commands] Change import for PrivateChannel for cooldowns --- discord/ext/commands/cooldowns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index 2af7cb017..9a73a2b4e 100644 --- a/discord/ext/commands/cooldowns.py +++ b/discord/ext/commands/cooldowns.py @@ -27,11 +27,11 @@ from __future__ import annotations from typing import Any, Callable, Deque, Dict, Optional, Union, Generic, TypeVar, TYPE_CHECKING from discord.enums import Enum +from discord.abc import PrivateChannel import time import asyncio from collections import deque -from ...abc import PrivateChannel from .errors import MaxConcurrencyReached from .context import Context from discord.app_commands import Cooldown as Cooldown