blind review on list-operations added by 2to3:
[nepi.git] / src / nepi / util / sfarspec_proc.py
index d5e0735..27dbbc0 100644 (file)
@@ -43,7 +43,7 @@ class SfaRSpecProcessing(object):
             return objcopy
         # We thus suppose we have a child of dict
         objcopy = {}
-        for k, v in list(obj.items()):
+        for k, v in obj.items():
             objcopy[k] = self.make_dict_rec(v)
         return objcopy