runtime/WampClient.py
changeset 1744 69dfdb26f600
parent 1740 b789b695b5c6
child 1748 ba5f64fe0e00
--- a/runtime/WampClient.py	Tue Aug 15 17:01:51 2017 +0300
+++ b/runtime/WampClient.py	Tue Aug 15 22:38:43 2017 +0300
@@ -108,19 +108,19 @@
 
     # create a WAMP application session factory
     component_config = types.ComponentConfig(
-        realm = WSClientConf["realm"],
-        extra = {"ID": WSClientConf["ID"]})
+        realm=WSClientConf["realm"],
+        extra={"ID": WSClientConf["ID"]})
     session_factory = wamp.ApplicationSessionFactory(
-        config = component_config)
+        config=component_config)
     session_factory.session = WampSession
 
     # create a WAMP-over-WebSocket transport client factory
     transport_factory = ReconnectingWampWebSocketClientFactory(
         session_factory,
-        url = WSClientConf["url"],
-        serializers = [MsgPackSerializer()],
-        debug = False,
-        debug_wamp = False)
+        url=WSClientConf["url"],
+        serializers=[MsgPackSerializer()],
+        debug=False,
+        debug_wamp=False)
 
     # start the client from a Twisted endpoint
     conn = connectWS(transport_factory)