From 4d6af2a8f029f821b0ced011d6094ebcade67c28 Mon Sep 17 00:00:00 2001 From: dgw Date: Mon, 23 May 2022 23:19:58 -0500 Subject: [PATCH] choices: fix use of undocumented import Sopel's Identifier type doesn't live in `sopel.tools.target`. --- sopel_8ball/choices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sopel_8ball/choices.py b/sopel_8ball/choices.py index 52a00ed..5d647ae 100644 --- a/sopel_8ball/choices.py +++ b/sopel_8ball/choices.py @@ -7,7 +7,7 @@ from sopel.bot import Sopel # type: ignore from sopel.config import Config # type: ignore -from sopel.tools.target import Identifier # type: ignore +from sopel.tools import Identifier # type: ignore class AbstractChoiceProvider(abc.ABC):