From b7540fab58497b92861ce62c27e6e31ee53a63a4 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 8 May 2023 15:33:54 -0700 Subject: [PATCH] Apply code suggestions Co-Authored-By: Trenton H <797416+stumpylog@users.noreply.github.com> --- src/documents/index.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/documents/index.py b/src/documents/index.py index decef2131..087329f9a 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -269,10 +269,7 @@ class DelayedQuery: return query.Or(user_criterias) if len(user_criterias) > 0 else None def evalBoolean(self, val): - if val == "false" or val == "0": - return False - if val == "true" or val == "1": - return True + return val.lower() in {"true", "1"} def _get_query_sortedby(self): if "ordering" not in self.query_params: