Remove unnecessary bool()

This commit is contained in:
2026-02-10 19:46:32 +00:00
parent a05c8236f6
commit 67bea9a2a7
+1 -1
View File
@@ -5,7 +5,7 @@ import os
from fastapi_vue import server
DEFAULT_PORT = TEMPLATE_DEFAULT_PORT
DEVMODE = bool(os.getenv("ENVPREFIX_DEV") == "1")
DEVMODE = os.getenv("ENVPREFIX_DEV") == "1"
def main():