🐛 Fix issue with Swagger theme change example in the official tutorial (#13289)

This commit is contained in:
Hyogeun Oh (오효근)
2025-02-19 01:52:15 +09:00
committed by GitHub
parent 235300c1d2
commit e157cf4b96
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
from fastapi import FastAPI
app = FastAPI(swagger_ui_parameters={"syntaxHighlight.theme": "obsidian"})
app = FastAPI(swagger_ui_parameters={"syntaxHighlight": {"theme": "obsidian"}})
@app.get("/users/{username}")