fix: linter issues
diff --git a/erpnext/crm/doctype/opportunity/opportunity.py b/erpnext/crm/doctype/opportunity/opportunity.py
index 2c990c4..3a04df0 100644
--- a/erpnext/crm/doctype/opportunity/opportunity.py
+++ b/erpnext/crm/doctype/opportunity/opportunity.py
@@ -10,7 +10,7 @@
from frappe.model.mapper import get_mapped_doc
from frappe.utils import cint, cstr, flt, get_fullname
-rom erpnext.crm.utils import add_link_in_communication, copy_comments
+from erpnext.crm.utils import add_link_in_communication, copy_comments
from erpnext.setup.utils import get_exchange_rate
from erpnext.utilities.transaction_base import TransactionBase
diff --git a/erpnext/crm/utils.py b/erpnext/crm/utils.py
index 531d6c1..8ae991f 100644
--- a/erpnext/crm/utils.py
+++ b/erpnext/crm/utils.py
@@ -39,7 +39,7 @@
"link_name": docname,
"parent": ("not in", communications)
}, pluck="parent")
-
+
for communication in communications + communication_links:
communication_doc = frappe.get_doc("Communication", communication)
communication_doc.add_link(doc.doctype, doc.name, autosave=True)