Naming the score for the green coins in two handlers
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ekaropolus 2025-07-06 01:30:22 -06:00
parent 56cad0a803
commit 582994b4f1

View File

@ -9,10 +9,9 @@ from pxy_langchain.services import LangchainAIService
from .handlers import (
start, help_command, handle_location,
next_truck, report_trash, private_pickup, green_balance,
next_route, complete_stop, missed_stop, my_eco_score as city_eco_score,
available_jobs, accept_job, next_pickup, complete_pickup, my_eco_score as private_eco_score
next_route, complete_stop, missed_stop, city_eco_score,
available_jobs, accept_job, next_pickup, complete_pickup, private_eco_score
)
logger = logging.getLogger(__name__)
@csrf_exempt