Black formater

This commit is contained in:
Sebastiaan
2025-05-24 11:03:54 +02:00
parent ad27420688
commit c1442f430e
7 changed files with 144 additions and 88 deletions

View File

@@ -38,9 +38,9 @@ class Settings(BaseSettings):
FRONTEND_HOST: str = "http://localhost:5173"
ENVIRONMENT: Literal["local", "staging", "production"] = "local"
BACKEND_CORS_ORIGINS: Annotated[
list[AnyUrl] | str, BeforeValidator(parse_cors)
] = []
BACKEND_CORS_ORIGINS: Annotated[list[AnyUrl] | str, BeforeValidator(parse_cors)] = (
[]
)
@computed_field # type: ignore[prop-decorator]
@property