1
0
mirror of https://github.com/ARM-software/devlib.git synced 2024-10-06 10:50:51 +01:00

Merge pull request #88 from bjackman/localconnection-platform-param

LocalConnection: Add ignored `platform` param to __init__ method
This commit is contained in:
setrofim 2017-02-14 12:05:26 +00:00 committed by GitHub
commit 9d5b1062dd

View File

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