From 768597c6cefd93eab53c1ed0bf7efb97bf2fdc69 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 22 Apr 2025 18:58:15 +0000 Subject: [PATCH] fix: sort imports in test file to fix lint error Co-Authored-By: Joe Moura --- tests/test_listen_decorator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_listen_decorator.py b/tests/test_listen_decorator.py index fd0d0ec20..957fad00d 100644 --- a/tests/test_listen_decorator.py +++ b/tests/test_listen_decorator.py @@ -57,8 +57,8 @@ def test_listen_with_explicit_output(): def test_ambiguous_case_with_explicit_parameters(): """Test case where method name matches a possible output value.""" - import logging import asyncio + import logging import time logging.basicConfig(level=logging.DEBUG)