1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

LocalConnection: Add ignored 'timeout' __init__ param

Target::get_connection requires this.
This commit is contained in:
Brendan Jackman 2016-12-14 14:41:04 +00:00
parent 8528568c1c
commit be2775a29a

View File

@ -28,7 +28,8 @@ class LocalConnection(object):
name = 'local' name = 'local'
def __init__(self, keep_password=True, unrooted=False, password=None): def __init__(self, keep_password=True, unrooted=False, password=None,
timeout=None):
self.logger = logging.getLogger('local_connection') self.logger = logging.getLogger('local_connection')
self.keep_password = keep_password self.keep_password = keep_password
self.unrooted = unrooted self.unrooted = unrooted