1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 10:10:46 +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:
Sergei Trofimov 2016-12-07 17:40:30 +00:00
parent 889f72c883
commit 925fccb4f9

View File

@ -28,9 +28,8 @@ class LocalConnection(object):
name = 'local' 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.logger = logging.getLogger('local_connection')
self.timeout = timeout
self.keep_password = keep_password self.keep_password = keep_password
self.unrooted = unrooted self.unrooted = unrooted
self.password = password self.password = password