From ea5be1f7a55c63a9522ea760f84bb648c37e8400 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 1 Jul 2026 20:12:42 +0530 Subject: [PATCH] fix: minor fix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- erpnext/stock/report/item_prices/test_item_prices.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/stock/report/item_prices/test_item_prices.py b/erpnext/stock/report/item_prices/test_item_prices.py index 147a3d4bc34..49e36c0429a 100644 --- a/erpnext/stock/report/item_prices/test_item_prices.py +++ b/erpnext/stock/report/item_prices/test_item_prices.py @@ -29,6 +29,7 @@ class TestItemPrices(ERPNextTestSuite): if row[item_idx] == item_code: return row self.fail(f"No report row found for item {item_code}") + return None def cell(self, columns, row, label): return row[self.labels(columns).index(label)]