Auto-generated patch by python-black
[integration/test.git] / csit / variables / ovsdb / ovsdb.py
index 4c4a2c99f62e9740e00074aa523fae8f05a0c28f..366e681232b7d0930a74ab16e2f6f13ed32a57a7 100644 (file)
@@ -35,10 +35,11 @@ class HostTopo(Topo):
         :param host_suffix: specified else default is 1. For example: if equals to 3 (s3,h3)
         :param hosts_per_switch: Number of hosts be connected to the switch. Default is 1.
     """
+
     def __init__(self, host_suffix=1, hosts_per_switch=1, **opts):
         Topo.__init__(self, **opts)
-        switch = self.addSwitch('s%s' % host_suffix)
+        switch = self.addSwitch("s%s" % host_suffix)
         add_hosts(self, switch, hosts_per_switch, host_suffix)
 
 
-topos = {'host': HostTopo}
+topos = {"host": HostTopo}