From df6e96bc76046948bb81ebb1e16cb5e78e3da6b0 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 20 Mar 2026 18:32:15 -0500 Subject: [PATCH] fix: replace wildcard import from db_calls_card_creation (#13) Closes #13 Replace `from db_calls_card_creation import *` with an explicit `from db_calls_card_creation import PitcherData`. Only PitcherData is referenced in creation_helpers.py; the wildcard was also pulling in all Peewee ORM internals via a transitive `from peewee import *`, polluting the namespace. Co-Authored-By: Claude Sonnet 4.6 --- creation_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/creation_helpers.py b/creation_helpers.py index 117c6ea..35f576f 100644 --- a/creation_helpers.py +++ b/creation_helpers.py @@ -10,7 +10,7 @@ import requests import time from db_calls import db_get -from db_calls_card_creation import * +from db_calls_card_creation import PitcherData from bs4 import BeautifulSoup # Card Creation Constants