From 25b8adc404373e63d22183d6309b32b3333e97a9 Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Sun, 26 Jan 2020 00:58:21 +0530 Subject: [PATCH] Import ABC from collections.abc instead of collections This is for Python 3.9 compatibility. --- discord/ext/commands/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 20dc94de1..9280136df 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -792,7 +792,7 @@ class BotBase(GroupMixin): except TypeError: # It's possible that a generator raised this exception. Don't # replace it with our own error if that's the case. - if isinstance(ret, collections.Iterable): + if isinstance(ret, collections.abc.Iterable): raise raise TypeError("command_prefix must be plain string, iterable of strings, or callable "