refactor: reduce LimitedSizeDict size

This commit is contained in:
2025-05-02 18:18:34 -04:00
parent f4b7e0f5ce
commit 83d784c917
2 changed files with 2 additions and 2 deletions

View File

@@ -15,5 +15,5 @@ idle_tracker = {"is_idle": False, "last_used": time.time()}
kill = {"transcript": False}
message_responses = LimitedSizeDict()
players = {}
sponsorblock_cache = LimitedSizeDict(size_limit=100)
sponsorblock_cache = LimitedSizeDict()
start_time = time.time()