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 <noreply@anthropic.com>
This commit is contained in:
parent
dd42f35674
commit
df6e96bc76
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user