1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 10:10:46 +00: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' name = 'local'
def __init__(self, keep_password=True, unrooted=False, password=None, def __init__(self, platform=None, keep_password=True, unrooted=False,
timeout=None): 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