Merge pull request 'fix: remove stray syntax error in players.py db_engine import' (#63) from next-release into main
All checks were successful
Build Docker Image / build (push) Successful in 1m3s

Reviewed-on: #63
This commit is contained in:
cal 2026-03-09 14:55:00 +00:00
commit b6290226d5

View File

@ -12,7 +12,7 @@ from pandas import DataFrame
from playwright.async_api import async_playwright
from ..card_creation import get_batter_card_data, get_pitcher_card_data
from ..db_engine import (, DoesNotExist
from ..db_engine import (
db,
Player,
model_to_dict,
@ -74,7 +74,6 @@ def normalize_franchise(franchise: str) -> str:
return FRANCHISE_NORMALIZE.get(titled, titled)
router = APIRouter(prefix="/api/v2/players", tags=["players"])