From 8f8d4901fff142a8d7d76a04c0e746276a6f0b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20de=20Ryckel?= Date: Thu, 10 Jun 2021 18:04:40 +0300 Subject: [PATCH] frappe wasn't imported error with NameError: name 'frappe' is not defined --- .../community_project_member/community_project_member.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/hackathon/doctype/community_project_member/community_project_member.py b/community/hackathon/doctype/community_project_member/community_project_member.py index 50fb2d4a..7a7b7559 100644 --- a/community/hackathon/doctype/community_project_member/community_project_member.py +++ b/community/hackathon/doctype/community_project_member/community_project_member.py @@ -3,7 +3,7 @@ # For license information, please see license.txt from __future__ import unicode_literals -# import frappe +import frappe from frappe.model.document import Document class CommunityProjectMember(Document):