Files
GitBluub 5ac118efbd format
2023-04-02 23:21:07 +09:00

10 lines
232 B
Python

class Key:
def __init__(self, key: int, start: int, duration: int):
self.key = key
self.start = start
self.duration = duration
self.done = False
def __repr__(self):
return f"{self.key} ({self.start} - {self.duration})"