8000 Style fix · CharlesT100/llama-cpp-python@2f9b649 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f9b649

Browse files
committed
Style fix
1 parent 6cf5876 commit 2f9b649

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
@@ -330,7 +330,7 @@ def _create_completion(
330330
repeat_penalty: float = 1.1,
331331
top_k: int = 40,
332332
stream: bool = False,
333-
) -> Union[Iterator[Completion], Iterator[CompletionChunk],]:
333+
) -> Union[Iterator[Completion], Iterator[CompletionChunk]]:
334334
assert self.ctx is not None
335335
completion_id = f"cmpl-{str(uuid.uuid4())}"
336336
created = int(time.time())

0 commit comments

Comments
 (0)
0