from OLTBase import OLTBase class Furukawa(OLTBase): def __init__(self, model, ssh): OLTBase.__init__(self, model, ssh) def get_expected_name(self): return "Login:" def get_expected_password(self): return "Password:" def get_write_exit(self): return "quit" def run_enable(self): return True