12 lines
280 B
Python
12 lines
280 B
Python
import Street
|
|
|
|
class BRStreet(Street.Street):
|
|
|
|
def __init__(self, loader, parentFSM, doneEvent):
|
|
Street.Street.__init__(self, loader, parentFSM, doneEvent)
|
|
|
|
def load(self):
|
|
Street.Street.load(self)
|
|
|
|
def unload(self):
|
|
Street.Street.unload(self)
|