Skip to content

Commit b2f5996

Browse files
committed
fix: add the missing default None value for cocoindex.init()
1 parent 56d6955 commit b2f5996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cocoindex/lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from .convert import dump_engine_object
1313

1414

15-
def init(settings: setting.Settings | None):
15+
def init(settings: setting.Settings | None = None):
1616
"""
1717
Initialize the cocoindex library.
1818

0 commit comments

Comments
 (0)