From d60bcc62864d8d12f86eac451610eb76b3cfdf3c Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 16 Feb 2023 21:58:19 +0900 Subject: [PATCH] consistency is key --- helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.py b/helper.py index aa43d6f..9f06cc6 100644 --- a/helper.py +++ b/helper.py @@ -250,5 +250,5 @@ def load_checks(): # General error checks. See the function for more info: if access_checks() != "Pass": return 'error_page' # If the API key fails, redirect to the settings page: - if key_check() == False: return 'settings_page' + if key_check() != True: return 'settings_page' return "Pass" \ No newline at end of file