Skip to content

Commit

Permalink
remove int cast
Browse files Browse the repository at this point in the history
  • Loading branch information
pudo committed Nov 8, 2024
1 parent cbbbda2 commit 1d3fbca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yente/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def random_cron() -> str:

BASE_SCHEMA = "Thing"
PORT = int(env_str("YENTE_PORT", env_str("PORT", "8000")))
HOST = int(env_str("YENTE_HOST", env_str("HOST", "0.0.0.0")))
HOST = env_str("YENTE_HOST", env_str("HOST", "0.0.0.0"))
UPDATE_TOKEN = env_str("YENTE_UPDATE_TOKEN", "unsafe-default")
CACHE_HEADERS = {
"Cache-Control": "public; max-age=3600",
Expand Down

0 comments on commit 1d3fbca

Please sign in to comment.