fix: Remove unused imports and add missing register_models import

This commit is contained in:
Paul Gauthier (aider) 2024-11-19 11:50:12 -08:00
parent e0aadbd961
commit c1febce528

View file

@ -1,11 +1,11 @@
import unittest import unittest
from unittest.mock import ANY, MagicMock, call, patch from unittest.mock import ANY, MagicMock, patch
from aider.models import ( from aider.models import (
MODEL_SETTINGS, MODEL_SETTINGS,
Model, Model,
ModelInfoManager, ModelInfoManager,
ModelSettings, register_models,
sanity_check_model, sanity_check_model,
sanity_check_models, sanity_check_models,
) )