From a565a63436d2dc255d40768b5ee88b5a532613d1 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 30 Oct 2024 13:21:47 -0700 Subject: [PATCH] style: Fix import formatting in test_models.py --- tests/basic/test_models.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_models.py b/tests/basic/test_models.py index 038e8024a..6718e6f3b 100644 --- a/tests/basic/test_models.py +++ b/tests/basic/test_models.py @@ -1,7 +1,12 @@ import unittest from unittest.mock import ANY, MagicMock, patch -from aider.models import Model, ModelInfoManager, sanity_check_model, sanity_check_models +from aider.models import ( + Model, + ModelInfoManager, + sanity_check_model, + sanity_check_models, +) class TestModels(unittest.TestCase):