We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee2aa8 commit 237b81eCopy full SHA for 237b81e
catalog-manager/operator/catalog_item.py
@@ -48,7 +48,7 @@ def rating(self):
48
@property
49
def is_disabled(self):
50
is_disabled_str = self.labels.get(Babylon.catalog_item_is_disabled_label, "False")
51
- is_disabled = {"True": True, "False": False}.get(is_disabled_str, False)
+ is_disabled = {"True": True, "False": False}.get(is_disabled_str)
52
return is_disabled
53
54
def update_from_definition(self, definition):
0 commit comments