From a7d02aeb10620ae759cdd49f6310a5d8e1f5a381 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Mon, 30 Mar 2026 11:07:19 -0500 Subject: [PATCH] style: remove redundant parentheses on boost_delta_json declaration Co-Authored-By: Claude Opus 4.6 (1M context) --- app/db_engine.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/db_engine.py b/app/db_engine.py index 05a903a..dcff8ee 100644 --- a/app/db_engine.py +++ b/app/db_engine.py @@ -1300,9 +1300,7 @@ class RefractorBoostAudit(BaseModel): battingcard = ForeignKeyField(BattingCard, null=True) pitchingcard = ForeignKeyField(PitchingCard, null=True) variant_created = IntegerField() - boost_delta_json = ( - TextField() - ) # JSONB in PostgreSQL; TextField for SQLite test compat + boost_delta_json = TextField() # JSONB in PostgreSQL; TextField for SQLite test compat applied_at = DateTimeField(default=datetime.now) class Meta: