Skip to content

Commit

Permalink
fixup! fixup! fixup! fix: Add authentication to reporting-api (#2329)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixhub committed Dec 24, 2024
1 parent 4ee2aa8 commit 237b81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog-manager/operator/catalog_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def rating(self):
@property
def is_disabled(self):
is_disabled_str = self.labels.get(Babylon.catalog_item_is_disabled_label, "False")
is_disabled = {"True": True, "False": False}.get(is_disabled_str, False)
is_disabled = {"True": True, "False": False}.get(is_disabled_str)
return is_disabled

def update_from_definition(self, definition):
Expand Down

0 comments on commit 237b81e

Please sign in to comment.