Skip to content

Commit bdda2b6

Browse files
Tishjevertlammerts
andauthored
Update duckdb/__init__.py
Co-authored-by: Evert Lammerts <[email protected]>
1 parent e10a482 commit bdda2b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

duckdb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ def version():
1919
])
2020

2121
class DBAPITypeObject:
22-
def __init__(self, name, types):
22+
def __init__(self, name: str, types: set[str]) -> None:
2323
self.name = name
24-
self.types = list(types)
24+
self.types = types
2525

2626
def __eq__(self, other):
2727
if isinstance(other, typing.DuckDBPyType):

0 commit comments

Comments
 (0)