Remove unused PLAYER_CACHE from api_calls.py
#37
Labels
No Label
ai-changes-requested
ai-failed
ai-pr-opened
ai-reviewed
ai-reviewing
ai-working
ai-working
bug
enhancement
feature
in-queue
performance
security
tech-debt
todo
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/paper-dynasty-discord#37
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
api_calls.py:21definesPLAYER_CACHE = {}that is never read or written. Actual cache is inin_game/data_cache.py:9. Misleading dead variable.Fixed in PR #64: #64
Removed
PLAYER_CACHE = {}fromapi_calls.py:21. Confirmed via grep that this variable had no callers — it was purely dead code. The active cache inin_game/data_cache.pyis unaffected.Addressed in PR #104. Removed
PLAYER_CACHE = {}fromapi_calls.py— confirmed no other references to it in that file.