style: Fix import formatting in test_models.py

This commit is contained in:
Paul Gauthier (aider) 2024-10-30 13:21:47 -07:00
parent a045bda171
commit a565a63436

View file

@ -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):