From 429f9d0a13d39e8240b5edbef87f65cfbb943e07 Mon Sep 17 00:00:00 2001 From: eeintech Date: Fri, 12 Mar 2021 11:19:20 -0500 Subject: [PATCH] Removed test print --- InvenTree/stock/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/InvenTree/stock/api.py b/InvenTree/stock/api.py index b2ecadd275..a7a7955c22 100644 --- a/InvenTree/stock/api.py +++ b/InvenTree/stock/api.py @@ -669,7 +669,6 @@ class StockList(generics.ListCreateAPIView): assembly = params.get('assembly', None) if assembly is not None: - print('ASSEMBLY') assembly = str2bool(assembly) queryset = queryset.filter(part__assembly=assembly)