From 9db47d8e92264f2b760abb00fedf6877548fd34c Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Sun, 4 Aug 2019 16:22:18 +0200 Subject: [PATCH] bugfix: enum value list --- pybis/src/python/pybis/attribute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybis/src/python/pybis/attribute.py b/pybis/src/python/pybis/attribute.py index 43ed94b8660..c2cb706de0b 100644 --- a/pybis/src/python/pybis/attribute.py +++ b/pybis/src/python/pybis/attribute.py @@ -390,7 +390,7 @@ class AttrHolder(): elif "permId" in item: values.append(item['permId']) else: - pass + values.append(item) return values # attribute contains a dictionary: same procedure as above. -- GitLab