🎨 Auto format

This commit is contained in:
pre-commit-ci-lite[bot] 2026-02-10 17:46:27 +00:00 committed by Pedro Lobato
parent 29ccbbc119
commit a32387757e
1 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,10 @@ try:
from pydantic_extra_types import coordinate
encoders_by_extra_type: dict[type[Any], Callable[[Any], Any]] = {
coordinate.Coordinate: lambda o: {"latitude": o.latitude, "longitude": o.longitude},
coordinate.Coordinate: lambda o: {
"latitude": o.latitude,
"longitude": o.longitude,
},
et_color.Color: str,
}
except ImportError: