From daba66a69d6e1b21b82f0fb8ee1c85da097e0f28 Mon Sep 17 00:00:00 2001
From: vermeul <swen@ethz.ch>
Date: Thu, 22 Aug 2019 16:34:55 +0200
Subject: [PATCH] boolean values have no type

---
 pybis/src/python/pybis/attribute.py | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/pybis/src/python/pybis/attribute.py b/pybis/src/python/pybis/attribute.py
index 2b15c31b44f..50c26f09449 100644
--- a/pybis/src/python/pybis/attribute.py
+++ b/pybis/src/python/pybis/attribute.py
@@ -268,11 +268,13 @@ class AttrHolder():
                     if value is None:
                         pass
                     elif isinstance(value, bool):
-                        up_obj[attr] = {
-                            "value": value,
-                            "isModified": True,
-                            "@type": "as.dto.common.update.FieldUpdateValue"
-                        }
+                        # for boolean values no type is needed
+                        up_obj[attr] = value
+                        #{
+                        #    "value": value,
+                        #    "isModified": True,
+                        #    "@type": "as.dto.common.update.FieldUpdateValue"
+                        #}
                     elif isinstance(value, dict) and len(value) == 0:
                         # value is {}: it means that we want this attribute to be
                         # deleted, not updated.
-- 
GitLab