chore: remove unused import

(cherry picked from commit bc3023318e)
This commit is contained in:
Devin Slauenwhite
2022-07-14 18:09:52 -04:00
committed by Mergify
parent 0fdec8fac8
commit c9443123f9

View File

@@ -6,8 +6,6 @@ import frappe
from frappe import _ from frappe import _
from frappe.utils.dashboard import cache_source from frappe.utils.dashboard import cache_source
from erpnext.stock.utils import get_stock_value_from_bin
@frappe.whitelist() @frappe.whitelist()
@cache_source @cache_source
@@ -38,7 +36,7 @@ def get(
fields=["warehouse", "stock_value"], fields=["warehouse", "stock_value"],
filters={"warehouse": ["IN", warehouses], "stock_value": [">", 0]}, filters={"warehouse": ["IN", warehouses], "stock_value": [">", 0]},
order_by="stock_value DESC", order_by="stock_value DESC",
limit_page_length=10 limit_page_length=10,
) )
if not warehouses: if not warehouses: