From 1b20081066680f35dca5aa4e22f25079c3021ba5 Mon Sep 17 00:00:00 2001 From: Marko Date: Wed, 21 Aug 2024 14:04:28 +0200 Subject: [PATCH] [FIX] fastapi: Consolidating licenses inside the fastapi modue to LGPL-3 --- fastapi/error_handlers.py | 2 +- fastapi/schemas.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi/error_handlers.py b/fastapi/error_handlers.py index c95d36922..ca054a581 100644 --- a/fastapi/error_handlers.py +++ b/fastapi/error_handlers.py @@ -1,5 +1,5 @@ # Copyright 2022 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/LGPL). from starlette.exceptions import WebSocketException diff --git a/fastapi/schemas.py b/fastapi/schemas.py index 9d3835aed..f3321d6cc 100644 --- a/fastapi/schemas.py +++ b/fastapi/schemas.py @@ -1,5 +1,5 @@ # Copyright 2022 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/LGPL). import warnings from enum import Enum from typing import Annotated, Generic, List, Optional, TypeVar