remove unused line
diff --git a/reclass/datatypes/parameters.py b/reclass/datatypes/parameters.py
index 0f55221..9605efd 100644
--- a/reclass/datatypes/parameters.py
+++ b/reclass/datatypes/parameters.py
@@ -99,7 +99,6 @@
def _wrap_list(self, source, path):
return [ self._wrap_value(v, path.new_subpath(k)) for (k, v) in enumerate(source) ]
- #self._wrap_value(v, path.new_subpath()) for v in source ]
def _wrap_dict(self, source, path):
return { k: self._wrap_value(v, path.new_subpath(k)) for k, v in source.iteritems() }