- hack xmlrpclib so that it can marshal subclasses of built-in types (e.g., Row)
[plcapi.git] / PLC / Methods / GetKeys.py
index 82c7ffc..f54c8e7 100644 (file)
@@ -29,9 +29,4 @@ class GetKeys(Method):
             if not key_ids:
                 return []
 
-       keys = Keys(self.api, key_ids).values()
-       
-       # Turn each key into a real dict
-       keys = [dict(key) for key in keys]
-               
-        return keys
+       return Keys(self.api, key_ids).values()