removed semicolon for break statement
diff --git a/erpnext/stock/doctype/pick_list/pick_list.py b/erpnext/stock/doctype/pick_list/pick_list.py
index 915400a..598378a 100644
--- a/erpnext/stock/doctype/pick_list/pick_list.py
+++ b/erpnext/stock/doctype/pick_list/pick_list.py
@@ -390,7 +390,7 @@
for n in pick_list.locations :
if not n.sales_order:
is_item_wo_so = 1
- break;
+ break
if is_item_wo_so == 1:
# Create a DN for items without sales orders as well
delivery_note = create_dn_wo_so(pick_list)
@@ -433,7 +433,7 @@
},
'condition': lambda doc: abs(doc.delivered_qty) < abs(doc.qty) and doc.delivered_by_supplier!=1
}
- break;
+ break
if delivery_note:
# map all items of all sales orders of that customer
for so in sales_dict[customer]: