Skip to content

Commit d50770b

Browse files
committed
fix: remove strict=True to support Python 3.9
1 parent 935e090 commit d50770b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama_cpp/llama_chat_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3820,7 +3820,7 @@ def chatml_function_calling(
38203820
},
38213821
}
38223822
for i, (tool_name, completion) in enumerate(
3823-
zip(completions_tool_name, completions, strict=True)
3823+
zip(completions_tool_name, completions)
38243824
)
38253825
],
38263826
},

0 commit comments

Comments
 (0)