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)
diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py
index 979d5c6..2bb9b55 100644
--- a/erpnext/selling/doctype/quotation/quotation.py
+++ b/erpnext/selling/doctype/quotation/quotation.py
@@ -39,7 +39,7 @@
if self.opportunity:
copy_comments("Opportunity", self.opportunity, self)
add_link_in_communication("Opportunity", self.opportunity, self)
-
+
elif self.quotation_to == "Lead" and self.party_name:
copy_comments("Lead", self.party_name, self)
add_link_in_communication("Lead", self.party_name, self)