From 6c3052902d6b32057b0a16f0d184516e26ee9d8d Mon Sep 17 00:00:00 2001 From: sinergia Date: Mon, 20 Nov 2023 01:06:32 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20Se=20a=C3=B1ade=20parametro=20'product?= =?UTF-8?q?=5Fquantities'=20a=20get=5Fproductions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sale.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sale.py b/sale.py index 75ae548..de3ed16 100644 --- a/sale.py +++ b/sale.py @@ -345,8 +345,8 @@ class Line(metaclass=PoolMeta): else: self.bought_pizza = False - def get_production(self): + def get_production(self, product_quantities ): "Return production for the sale line" - Production = super(Line, self).get_production() + Production = super(Line, self).get_production(product_quantities) return Production