From fe34ea8e5b6e55084aafe10cd2e94b9c0d3ff7da Mon Sep 17 00:00:00 2001 From: giles Date: Fri, 27 Feb 2026 09:19:49 +0000 Subject: [PATCH] Fix market crash: remove stale toggle_product_like import Co-Authored-By: Claude Opus 4.6 --- market/bp/product/services/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/market/bp/product/services/__init__.py b/market/bp/product/services/__init__.py index ce711a7..ee62602 100644 --- a/market/bp/product/services/__init__.py +++ b/market/bp/product/services/__init__.py @@ -1,3 +1,3 @@ -from .product_operations import toggle_product_like, massage_full_product +from .product_operations import massage_full_product -__all__ = ["toggle_product_like", "massage_full_product"] +__all__ = ["massage_full_product"]