just autopep8'ed refreshpeer
[plcapi.git] / PLC / Methods / GetNodeTypes.py
index 6f90469..1810343 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -18,7 +16,7 @@ class GetNodeTypes(Method):
         ]
 
     returns = [NodeType.fields['node_type']]
-    
+
 
     def call(self, auth):
         return [node_type['node_type'] for node_type in NodeTypes(self.api)]