浏览代码

fix: error message wording

Timothy J. Baek 1 年之前
父节点
当前提交
e394d70206
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      backend/constants.py

+ 1 - 1
backend/constants.py

@@ -10,7 +10,7 @@ class ERROR_MESSAGES(str, Enum):
         return super().__str__()
 
     DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
-    ENV_VAR_NOT_FOUND = "Essential environment variable not found. Terminating now."
+    ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
     INVALID_TOKEN = (
         "Your session has expired or the token is invalid. Please sign in again."
     )