docs: fix wrong type in PREFERRED_DATABASES example (#25200)

Signed-off-by: cmontemuino <1761056+cmontemuino@users.noreply.github.com>
This commit is contained in:
Carlos M
2023-09-06 16:28:07 +02:00
committed by GitHub
parent e605d6dddf
commit 78b8e9421e

View File

@@ -28,7 +28,7 @@ We added a new configuration option where the admin can define their preferred d
# displayed prominently in the "Add Database" dialog. You should
# use the "engine_name" attribute of the corresponding DB engine spec
# in `superset/db_engine_specs/`.
PREFERRED_DATABASES: List[str] = [
PREFERRED_DATABASES: list[str] = [
"PostgreSQL",
"Presto",
"MySQL",