From 52a754cfa63c4159207fba7dae5ac484d6e495a6 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 a7b4d9b2d..a396f09ab 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). import logging diff --git a/fastapi/schemas.py b/fastapi/schemas.py index e7387587f..e67f59afe 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, TypeVar