From e1221d4c452056b52e277ff2fc57dce307b429e9 Mon Sep 17 00:00:00 2001 From: SimplifiedPrivacy Date: Thu, 20 Aug 2026 17:25:28 -0400 Subject: [PATCH] Renamed do_we_have_billing_id to ticket_config_tools --- core/controllers/tickets/TicketPayController.py | 2 +- .../{do_we_have_billing_id.py => ticket_config_tools.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename core/services/payment_phase/{do_we_have_billing_id.py => ticket_config_tools.py} (100%) diff --git a/core/controllers/tickets/TicketPayController.py b/core/controllers/tickets/TicketPayController.py index 6cf1c86..cd72473 100644 --- a/core/controllers/tickets/TicketPayController.py +++ b/core/controllers/tickets/TicketPayController.py @@ -27,7 +27,7 @@ from core.services.helpers.valid_profile_quantity import valid_profile_quantity from core.errors.exceptions import * from core.controllers.tickets.TicketSyncController import sync_ticket_prices -from core.services.payment_phase.do_we_have_billing_id import do_we_have_billing_id +from core.services.payment_phase.ticket_config_tools import do_we_have_billing_id """ Inputs: Which plan (key), which crypto, and how many profiles diff --git a/core/services/payment_phase/do_we_have_billing_id.py b/core/services/payment_phase/ticket_config_tools.py similarity index 100% rename from core/services/payment_phase/do_we_have_billing_id.py rename to core/services/payment_phase/ticket_config_tools.py