mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-05-31 16:47:11 +08:00
Fix typo
This commit is contained in:
parent
e40fa136aa
commit
c574f19506
@ -11,7 +11,7 @@ class Counter:
|
|||||||
def __init__(self, start: int = 0) -> None:
|
def __init__(self, start: int = 0) -> None:
|
||||||
self.counter = start
|
self.counter = start
|
||||||
|
|
||||||
def next(self) -> int:
|
def __next__(self) -> int:
|
||||||
id = self.counter
|
id = self.counter
|
||||||
self.counter += 1
|
self.counter += 1
|
||||||
return id
|
return id
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user