This is an automated email from the ASF dual-hosted git repository.

sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 78b8e9421e docs: fix wrong type in PREFERRED_DATABASES example (#25200)
78b8e9421e is described below

commit 78b8e9421e53b332675fefc5b361fe804e52191c
Author: Carlos M <[email protected]>
AuthorDate: Wed Sep 6 16:28:07 2023 +0200

    docs: fix wrong type in PREFERRED_DATABASES example (#25200)
    
    Signed-off-by: cmontemuino <[email protected]>
---
 docs/docs/databases/db-connection-ui.mdx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/docs/databases/db-connection-ui.mdx 
b/docs/docs/databases/db-connection-ui.mdx
index 833b865c8d..67303c802a 100644
--- a/docs/docs/databases/db-connection-ui.mdx
+++ b/docs/docs/databases/db-connection-ui.mdx
@@ -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",

Reply via email to