LocalConnection: Add ignored `platform` param to __init__ method

This parameter is used by the other connection classes and as of
21f40035d785 ("gem5: Small tweaks in target to allow gem5 simulations") is
passed by to the connection class constructor via expansion of
Target.connection_settings (see Target.get_connection)
diff --git a/devlib/host.py b/devlib/host.py
index 3e42c0f..8c8a069 100644
--- a/devlib/host.py
+++ b/devlib/host.py
@@ -29,8 +29,8 @@
 
     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