Skip to content

Commit cdcadc5

Browse files
committed
fix: stray keystroke
1 parent aae2011 commit cdcadc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama_cpp/llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2373,7 +2373,7 @@ def from_pretrained(
23732373
matching_additional_files = [
23742374
file
23752375
for file in file_list
2376-
n if fnmatch.fnmatch(file, additional_file_name)
2376+
if fnmatch.fnmatch(file, additional_file_name)
23772377
]
23782378

23792379
if len(matching_additional_files) == 0:

0 commit comments

Comments
 (0)