chore: prune mypy exclude list

This commit is contained in:
Matthew Farrellee 2025-09-26 10:07:04 -04:00
parent 9c751b6789
commit ebecfe59e9
10 changed files with 26 additions and 37 deletions

View file

@ -20,7 +20,7 @@ logger = get_logger(name=__name__, category="providers::utils")
class RemoteInferenceProviderConfig(BaseModel):
allowed_models: list[str] | None = Field(
allowed_models: list[str] | None = Field( # TODO: make this non-optional and give a list() default
default=None,
description="List of models that should be registered with the model registry. If None, all models are allowed.",
)