chore: remove all six compat code

This commit is contained in:
Ankush Menat
2021-11-04 19:48:32 +05:30
parent 56a25a0c4f
commit 8fe5feb6a4
420 changed files with 179 additions and 678 deletions

View File

@@ -4,7 +4,6 @@
import frappe
from frappe import _
from six import iteritems
import erpnext
@@ -45,7 +44,7 @@ def get_level():
"Work Order": 5
}
for doctype, min_count in iteritems(doctypes):
for doctype, min_count in doctypes.items():
count = frappe.db.count(doctype)
if count > min_count:
activation_level += 1