remove: unused imports
diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py
index b97eefc..ba34dff 100644
--- a/erpnext/selling/doctype/quotation/quotation.py
+++ b/erpnext/selling/doctype/quotation/quotation.py
@@ -186,9 +186,6 @@
return doclist
def set_expired_status():
- from datetime import date
- DATE_FORMAT = "%Y%m%d" # For converting python date to SQL comparable date
- today = date.today().strftime(DATE_FORMAT)
frappe.db.sql("""UPDATE `tabQuotation` SET status = 'Expired'
WHERE status != 'Expired' AND 'valid_till < %s""" , (nowdate()))