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

Merge pull request #81 from bjackman/master

LocalConnection: Add ignored 'timeout' __init__ param
This commit is contained in:
setrofim 2016-12-14 14:46:12 +00:00 committed by GitHub
commit e88c6880ab

View File

@ -28,7 +28,8 @@ class LocalConnection(object):
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.keep_password = keep_password
self.unrooted = unrooted