Fix pep8 violations in container_manager.py
[integration/test.git] / test / tools / CSIT_Test / base / modules / container_manager.py
index b5808f248d5941d2e984032d6686d3c13f6472c5..03b0fd8a5dc9c778c58611e9ee0a12b7d2c00f8e 100644 (file)
@@ -7,7 +7,7 @@ Updated: 2013-11-01
 import sys
 
 sys.path.append('..')
-from restlib import *
+from restlib import *  # noqa
 from testmodule import TestModule
 
 sys.path.remove('..')
@@ -16,7 +16,8 @@ sys.path.remove('..')
 class ContainerManager(TestModule):
     """
     Test for the container manager.
-    Start 2-layer tree topology network. e.g., in Mininet, run  'sudo mn --controller=remote,ip=127.0.0.1 --mac --topo tree,2'
+    Start 2-layer tree topology network. e.g., in Mininet, run
+        'sudo mn --controller=remote,ip=127.0.0.1 --mac --topo tree,2'
     """
 
     def __init__(self, restSubContext='/controller/nb/v2/containermanager', user=DEFAULT_USER, password=DEFAULT_PWD,
@@ -45,7 +46,8 @@ class ContainerManager(TestModule):
     def test_container_operations(self, name, body):
         """
         Test subnet operations, like adding and removeing a subnet.
-        >>> ContainerManager().test_container_operations('cont1',{'container':'cont1','flowSpecs': [], 'staticVlan':'10','nodeConnectors':["OF|1@OF|00:00:00:00:00:00:00:01","OF|23@OF|00:00:00:00:00:00:20:21"]})
+        >>> ContainerManager().test_container_operations('cont1',{'container':'cont1','flowSpecs': [],'staticVlan':'10',
+                'nodeConnectors':["OF|1@OF|00:00:00:00:00:00:00:01","OF|23@OF|00:00:00:00:00:00:20:21"]})
         True
         """
         return super(self.__class__, self).test_add_remove_operations('containers', 'container', name, body,