Skip to content

Commit 584b02f

Browse files
authored
fix: add the missing default None value for cocoindex.init() (#527)
1 parent 56d6955 commit 584b02f

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)