10 lines
155 B
Python
10 lines
155 B
Python
|
# Python imports
|
||
|
|
||
|
# Lib imports
|
||
|
|
||
|
# Application imports
|
||
|
|
||
|
|
||
|
class HistoryManager(list):
|
||
|
def __init__(self):
|
||
|
super(HistoryManager, self).__init__()
|