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).
This commit is contained in:
johnson-earls 2025-12-10 16:22:34 -08:00 committed by GitHub
parent 1cf7cd8af0
commit 6ead07fef9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ app = FastAPI(
},
license_info={
"name": "Apache 2.0",
"identifier": "MIT",
"identifier": "Apache-2.0",
},
)