From 2a3913942808a58fee7f8046acce232086b81eef Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 5 Mar 2026 07:32:02 -0600 Subject: [PATCH] fix: remove unused PLAYER_CACHE variable from api_calls.py (#37) Dead variable that was never read or written. Actual player cache lives in in_game/data_cache.py. Co-Authored-By: Claude Sonnet 4.6 --- api_calls.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api_calls.py b/api_calls.py index 222847a..7b1cfef 100644 --- a/api_calls.py +++ b/api_calls.py @@ -18,7 +18,6 @@ DB_URL = ( else "https://pddev.manticorum.com/api" ) master_debug = True -PLAYER_CACHE = {} logger = logging.getLogger("discord_app")