🎨 Auto format

This commit is contained in:
pre-commit-ci-lite[bot] 2026-02-10 15:06:05 +00:00 committed by GitHub
parent 74417cec5c
commit ef5884603e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -39,7 +39,7 @@ try:
encoders_by_extra_type: dict[type[Any], Callable[[Any], Any]] = {
coordinate.Coordinate: str,
et_color.Color: str
et_color.Color: str,
}
except ImportError:
encoders_by_extra_type = {}
@ -124,7 +124,9 @@ def generate_encoders_by_class_tuples(
encoders_by_class_tuples = generate_encoders_by_class_tuples(ENCODERS_BY_TYPE)
encoders_by_class_tuples.update(generate_encoders_by_class_tuples(encoders_by_extra_type))
encoders_by_class_tuples.update(
generate_encoders_by_class_tuples(encoders_by_extra_type)
)
def jsonable_encoder(