Commit c574f195 authored by Woosuk Kwon's avatar Woosuk Kwon
Browse files

Fix typo

parent e40fa136
...@@ -11,7 +11,7 @@ class Counter: ...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment