Apply code suggestions

Co-Authored-By: Trenton H <797416+stumpylog@users.noreply.github.com>
This commit is contained in:
shamoon 2023-05-08 15:33:54 -07:00
parent 88e6f8abf6
commit b7540fab58

View File

@ -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: