mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 13:15:18 +02:00
fix pep8
This commit is contained in:
@@ -98,8 +98,9 @@ class ArubaDeviceScanner(object):
|
||||
import pexpect
|
||||
connect = "ssh {}@{}"
|
||||
ssh = pexpect.spawn(connect.format(self.username, self.host))
|
||||
query = ssh.expect(['password:', pexpect.TIMEOUT, pexpect.EOF, 'continue connecting (yes/no)?',
|
||||
'Host key verification failed.', 'Connection refused', 'Connection timed out'], timeout=120)
|
||||
query = ssh.expect(['password:', pexpect.TIMEOUT, pexpect.EOF,
|
||||
'continue connecting (yes/no)?', 'Host key verification failed.',
|
||||
'Connection refused', 'Connection timed out'], timeout=120)
|
||||
if query == 1:
|
||||
_LOGGER.error("Timeout")
|
||||
return
|
||||
|
Reference in New Issue
Block a user