From c01f02f0c02e9749509bb63332fb322c510b1ed3 Mon Sep 17 00:00:00 2001 From: Luna Date: Thu, 2 Sep 2021 00:28:28 -0300 Subject: [PATCH] add missing import --- litecord/blueprints/dms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litecord/blueprints/dms.py b/litecord/blueprints/dms.py index 38d27e7..0b8cb1c 100644 --- a/litecord/blueprints/dms.py +++ b/litecord/blueprints/dms.py @@ -32,6 +32,7 @@ from .auth import token_check from litecord.blueprints.dm_channels import gdm_create, gdm_add_recipient, gdm_pubsub from litecord.common.channels import try_dm_state +from litecord.utils import index_by_func log = Logger(__name__) bp = Blueprint("dms", __name__)