From 93eba25a39c99ad42d46131aa7b5283a9dccf336 Mon Sep 17 00:00:00 2001 From: mAxYoLo01 Date: Thu, 4 Aug 2022 13:18:55 +0200 Subject: [PATCH] fix: add search_iterable() to __all__ --- interactions/client/models/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interactions/client/models/utils.py b/interactions/client/models/utils.py index ea6f31a9a..f241fb4c8 100644 --- a/interactions/client/models/utils.py +++ b/interactions/client/models/utils.py @@ -8,7 +8,7 @@ if TYPE_CHECKING: from ..context import CommandContext -__all__ = ("autodefer", "spread_to_rows") +__all__ = ("autodefer", "spread_to_rows", "search_iterable") _T = TypeVar("_T")