From ef9780719dd88ef88c33b9e2e2f4a31452e726d4 Mon Sep 17 00:00:00 2001 From: Kenneth Zhao Date: Wed, 24 Jun 2026 19:06:11 +0000 Subject: [PATCH] style: fix import ordering in mattermost tests --- tests/channels/test_mattermost_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/channels/test_mattermost_channel.py b/tests/channels/test_mattermost_channel.py index 15c3817b..59566a84 100644 --- a/tests/channels/test_mattermost_channel.py +++ b/tests/channels/test_mattermost_channel.py @@ -11,12 +11,12 @@ import pytest from nanobot.bus.events import OutboundMessage from nanobot.bus.queue import MessageBus -from nanobot.pairing import PAIRING_CODE_META_KEY from nanobot.channels.mattermost import ( MATTERMOST_MAX_MESSAGE_LEN, MattermostChannel, MattermostConfig, ) +from nanobot.pairing import PAIRING_CODE_META_KEY class _FakeHTTPClient: