12 lines
347 B
Python
12 lines
347 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
# Add parent directory to Python path
|
|
parent_dir = Path(__file__).parent.parent
|
|
sys.path.insert(0, str(parent_dir))
|
|
|
|
# Debug: Print what's available in config
|
|
import helpers.config as cfg
|
|
print("Available in config:", dir(cfg))
|
|
print("PURCHASE_FEES_CSV value:", getattr(cfg, 'PURCHASE_FEES_CSV', 'NOT FOUND'))
|