From 26eff6d9b6be7758a7ab8e581385ff933ba349d4 Mon Sep 17 00:00:00 2001 From: Elliana May Date: Tue, 23 Aug 2022 23:32:15 +0800 Subject: [PATCH] chore: correct type --- duckdb_engine/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/duckdb_engine/config.py b/duckdb_engine/config.py index 13218520..e874d8f8 100644 --- a/duckdb_engine/config.py +++ b/duckdb_engine/config.py @@ -22,7 +22,7 @@ def get_core_config() -> Set[str]: def apply_config( dialect: Dialect, conn: duckdb.DuckDBPyConnection, - ext: Dict[str, Union[str | int | bool]], + ext: Dict[str, Union[str, int, bool]], ) -> None: processors = {k: v.literal_processor(dialect=dialect) for k, v in TYPES.items()}