from OLTBase import OLTBase class FiberHome(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 "exit" def run_enable(self): return True def get_character_error(self): return "%" def get_expected_exit_with_confirmation(self): return "Bye!"