mirror of
https://github.com/rendercv/rendercv.git
synced 2026-03-14 12:50:48 -04:00
refactor
This commit is contained in:
@@ -237,11 +237,13 @@ def handle_validation_error(exception: pydantic.ValidationError):
|
||||
if isinstance(input, (dict, list)):
|
||||
input = ""
|
||||
|
||||
new_errors.append({
|
||||
"loc": str(location),
|
||||
"msg": message,
|
||||
"input": str(input),
|
||||
})
|
||||
new_errors.append(
|
||||
{
|
||||
"loc": str(location),
|
||||
"msg": message,
|
||||
"input": str(input),
|
||||
}
|
||||
)
|
||||
|
||||
# Print the errors in a nice table:
|
||||
table = rich.table.Table(
|
||||
|
||||
@@ -955,7 +955,9 @@ class RenderCVDataModel(RenderCVBaseModel):
|
||||
design: RenderCVDesign | pydantic.json_schema.SkipJsonSchema[Any] = pydantic.Field(
|
||||
default=ClassicThemeOptions(theme="classic"),
|
||||
title="Design",
|
||||
description="The design information of the CV.",
|
||||
description=(
|
||||
"The design information of the CV. The default is the classic theme."
|
||||
),
|
||||
)
|
||||
|
||||
@pydantic.field_validator("design", mode="before")
|
||||
|
||||
Reference in New Issue
Block a user