- send account registration e-mails from the website
[plcapi.git] / PLC / Methods / DeleteBootState.py
index b7bce21..507fc7b 100644 (file)
@@ -23,6 +23,7 @@ class DeleteBootState(Method):
 
     returns = Parameter(int, '1 if successful')
 
+
     def call(self, auth, name):
         boot_states = BootStates(self.api, [name])
         if not boot_states:
@@ -30,5 +31,5 @@ class DeleteBootState(Method):
         boot_state = boot_states[0]
 
         boot_state.delete()
-
+       
         return 1