mirror of
https://github.com/ARM-software/devlib.git
synced 2025-01-31 02:00:45 +00:00
LocalConnection: remove unused timeout parameter
`timeout` parameter passed to LocalConnection gets assigned to an instance variable, however it is not used for anything.
This commit is contained in:
parent
889f72c883
commit
925fccb4f9
@ -28,9 +28,8 @@ class LocalConnection(object):
|
||||
|
||||
name = 'local'
|
||||
|
||||
def __init__(self, timeout=10, keep_password=True, unrooted=False, password=None):
|
||||
def __init__(self, keep_password=True, unrooted=False, password=None):
|
||||
self.logger = logging.getLogger('local_connection')
|
||||
self.timeout = timeout
|
||||
self.keep_password = keep_password
|
||||
self.unrooted = unrooted
|
||||
self.password = password
|
||||
|
Loading…
x
Reference in New Issue
Block a user