Skip to content

Commit 0304a87

Browse files
committed
fix config dict value typehint
1 parent 135f09c commit 0304a87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_duckdb-stubs/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ def commit(*, connection: DuckDBPyConnection | None = None) -> DuckDBPyConnectio
10481048
def connect(
10491049
database: str | pathlib.Path = ":memory:",
10501050
read_only: bool = False,
1051-
config: dict[str, str] | None = None,
1051+
config: dict[str, str | bool | int | float | list[str]] | None = None,
10521052
) -> DuckDBPyConnection: ...
10531053
def create_function(
10541054
name: str,

0 commit comments

Comments
 (0)