[Fix] len() instead of .length
diff --git a/erpnext/accounts/doctype/accounting_period/accounting_period.py b/erpnext/accounts/doctype/accounting_period/accounting_period.py
index f2ba578..32441db 100644
--- a/erpnext/accounts/doctype/accounting_period/accounting_period.py
+++ b/erpnext/accounts/doctype/accounting_period/accounting_period.py
@@ -46,7 +46,7 @@
 		return docs_for_closing
 
 	def bootstrap_doctypes_for_closing(self):
-		if self.closed_documents.length == 0:
+		if len(self.closed_documents) == 0:
 			for doctype_for_closing in self.get_doctypes_for_closing():
 				self.append('closed_documents', {
 					"document_type": doctype_for_closing.document_type,