This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit fb9a121e5ea40bb3ef2cee707d4e2a9cb06ba5b4 Author: Michael S. Molina <[email protected]> AuthorDate: Wed Oct 9 14:29:11 2024 -0300 fix: Incorrect type in config.py (#30564) --- superset/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/config.py b/superset/config.py index a5fdd2f4b5..09a3420231 100644 --- a/superset/config.py +++ b/superset/config.py @@ -234,7 +234,7 @@ SQLALCHEMY_ENCRYPTED_FIELD_TYPE_ADAPTER = ( # pylint: disable=invalid-name ) # Extends the default SQLGlot dialects with additional dialects -SQLGLOT_DIALECTS_EXTENSIONS: map[str, Dialects | type[Dialect]] = {} +SQLGLOT_DIALECTS_EXTENSIONS: dict[str, Dialects | type[Dialect]] = {} # The limit of queries fetched for query search QUERY_SEARCH_LIMIT = 1000
