From c59a42a9c8b9e5de55b66d26c90bda16ba8725e5 Mon Sep 17 00:00:00 2001 From: Ekaropolus Date: Sun, 6 Jul 2025 01:05:43 -0600 Subject: [PATCH] Circular calling in handlers, fix by creating common handlers --- pxy_bots/handlers/__init__.py | 2 +- pxy_bots/{handlers.py => handlers/common.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename pxy_bots/{handlers.py => handlers/common.py} (100%) diff --git a/pxy_bots/handlers/__init__.py b/pxy_bots/handlers/__init__.py index 2d1d546..ed31a4b 100644 --- a/pxy_bots/handlers/__init__.py +++ b/pxy_bots/handlers/__init__.py @@ -1,4 +1,4 @@ -from pxy_bots.handlers import start, help_command, handle_location, respond +from .common import start, help_command, handle_location, respond from .handlers_citizen import next_truck, report_trash, private_pickup, green_balance from .handlers_city import next_route, complete_stop, missed_stop, my_eco_score as city_eco_score from .handlers_private import available_jobs, accept_job, next_pickup, complete_pickup, my_eco_score as private_eco_score diff --git a/pxy_bots/handlers.py b/pxy_bots/handlers/common.py similarity index 100% rename from pxy_bots/handlers.py rename to pxy_bots/handlers/common.py