get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / DeleteBootState.py
index 4773d60..1bea3db 100644 (file)
@@ -23,8 +23,6 @@ class DeleteBootState(Method):
 
     returns = Parameter(int, '1 if successful')
 
-    event_type = 'Delete'
-    object_type = 'BootState'
 
     def call(self, auth, name):
         boot_states = BootStates(self.api, [name])
@@ -33,5 +31,5 @@ class DeleteBootState(Method):
         boot_state = boot_states[0]
 
         boot_state.delete()
-       
+
         return 1