From b5ad4acc417f3fbeb41888a80f160204509784ad Mon Sep 17 00:00:00 2001 From: "El-Shafei H." Date: Thu, 4 Dec 2025 12:03:41 +0300 Subject: [PATCH] Fix typo in docstring for update_product_bundle_rate --- erpnext/stock/doctype/packed_item/packed_item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/packed_item/packed_item.py b/erpnext/stock/doctype/packed_item/packed_item.py index 25f58365a95..0a76425d6d0 100644 --- a/erpnext/stock/doctype/packed_item/packed_item.py +++ b/erpnext/stock/doctype/packed_item/packed_item.py @@ -339,7 +339,7 @@ def update_product_bundle_rate(parent_items_price, pi_row, item_row): """ Update the price dict of Product Bundles based on the rates of the Items in the bundle. - Stucture: + Structure: {(Bundle Item 1, ae56fgji): 150.0, (Bundle Item 2, bc78fkjo): 200.0} """ key = (pi_row.parent_item, pi_row.parent_detail_docname)