- Change .py files to use 4-space indents and no hard tab characters.
[plcapi.git] / PLC / Methods / DeleteKeyType.py
index 843c7fe..d227368 100644 (file)
@@ -1,4 +1,5 @@
 # $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -22,8 +23,8 @@ class DeleteKeyType(Method):
         ]
 
     returns = Parameter(int, '1 if successful')
-    
-    
+
+
     def call(self, auth, name):
         key_types = KeyTypes(self.api, [name])
         if not key_types: