CLAUDE: Add missing db_delete import for cardposition cleanup

The deletion logic was failing with 'name db_delete is not defined' because
the function wasn't imported from db_calls.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2025-11-09 11:53:39 -06:00
parent c23f6d1ada
commit 6746b51ca6

View File

@ -14,7 +14,7 @@ import urllib
from creation_helpers import get_args, CLUB_LIST, FRANCHISE_LIST, sanitize_name
from batters.stat_prep import DataMismatchError
from db_calls import DB_URL, db_get, db_patch, db_post, db_put
from db_calls import DB_URL, db_get, db_patch, db_post, db_put, db_delete
from exceptions import log_exception, logger
from retrosheet_transformer import load_retrosheet_csv
import batters.calcs_batter as cba