autopep8
[sfa.git] / sfa / methods / Status.py
index 68d928e..dd15f5d 100644 (file)
@@ -3,26 +3,27 @@ from sfa.util.method import Method
 
 from sfa.storage.parameter import Parameter, Mixed
 
+
 class Status(Method):
     """
     Get the status of a sliver
-    
+
     @param slice_urn (string) URN of slice to allocate to
-    
+
     """
     interfaces = ['aggregate', 'slicemgr', 'component']
     accepts = [
         Parameter(type([str]), "Slice or sliver URNs"),
         Parameter(type([dict]), "credentials"),
         Parameter(dict, "Options")
-        ]
+    ]
     returns = Parameter(dict, "Status details")
 
     def call(self, xrns, creds, options):
         valid_creds = self.api.auth.checkCredentialsSpeaksFor(creds, 'sliverstatus', xrns,
-                                                              check_sliver_callback = self.api.driver.check_sliver_credentials,
+                                                              check_sliver_callback=self.api.driver.check_sliver_credentials,
                                                               options=options)
 
-        self.api.logger.info("interface: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, xrns, self.name))
+        self.api.logger.info("interface: %s\ttarget-hrn: %s\tmethod-name: %s" %
+                             (self.api.interface, xrns, self.name))
         return self.api.manager.Status(self.api, xrns, creds, options)
-