Teslim Olunlade
Results
12
comments of
Teslim Olunlade
@roman-right the fix seems to be just using the `Sequence` type instead of `List`. I just edited it in my site-package directory to suppress the issue.
I came up with this solution using a decorator: ```python from typing import Any, Callable, TypeVar, cast import bson from pydantic import BaseModel, create_model, model_validator T = TypeVar("T", bound="BaseModel") def...