From 6ead07fef9f99b927e5f0ef52252d5462c56c7ae Mon Sep 17 00:00:00 2001 From: johnson-earls <125391700+johnson-earls@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:22:34 -0800 Subject: [PATCH] Fix license identifier in tutorial001_1.py Fix the Apache 2.0 license identifier to be `Apache-2.0`, not `MIT` (which is NOT an Apache 2.0 license). --- docs_src/metadata/tutorial001_1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_src/metadata/tutorial001_1.py b/docs_src/metadata/tutorial001_1.py index a8f5b9458..419232d86 100644 --- a/docs_src/metadata/tutorial001_1.py +++ b/docs_src/metadata/tutorial001_1.py @@ -28,7 +28,7 @@ app = FastAPI( }, license_info={ "name": "Apache 2.0", - "identifier": "MIT", + "identifier": "Apache-2.0", }, )