Skip to content

Commit

Permalink
Backward compatible hidden check (bugfix) (#1718)
Browse files Browse the repository at this point in the history
Backward compatible hidden check
  • Loading branch information
Hook25 authored Feb 12, 2025
1 parent e85a722 commit a51b37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkbox-ng/checkbox_ng/urwid_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ def get_manifests_by_visibility(self, question_manifests, hidden):
q: [
manifest
for manifest in manifests
if manifest["hidden"] == hidden
if manifest.get("hidden", False) == hidden
]
for q, manifests in question_manifests.items()
}
Expand Down

0 comments on commit a51b37c

Please sign in to comment.