From 916164983da283bff6088c276856ebac86c1f7b4 Mon Sep 17 00:00:00 2001 From: GuillemCForgeFlow Date: Thu, 7 Mar 2024 14:52:08 +0100 Subject: [PATCH] [IMP]crm_lead_product: black, isort, prettier --- crm_lead_product/report/crm_product_report.py | 2 +- setup/crm_lead_product/odoo/addons/crm_lead_product | 1 + setup/crm_lead_product/setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 setup/crm_lead_product/odoo/addons/crm_lead_product create mode 100644 setup/crm_lead_product/setup.py diff --git a/crm_lead_product/report/crm_product_report.py b/crm_lead_product/report/crm_product_report.py index bf7d0a8e986..d3af3074e48 100644 --- a/crm_lead_product/report/crm_product_report.py +++ b/crm_lead_product/report/crm_product_report.py @@ -7,7 +7,7 @@ class ActivityReport(models.Model): - """ CRM Lead Analysis """ + """CRM Lead Analysis""" _name = "crm.product.report" _auto = False diff --git a/setup/crm_lead_product/odoo/addons/crm_lead_product b/setup/crm_lead_product/odoo/addons/crm_lead_product new file mode 120000 index 00000000000..284c913cb96 --- /dev/null +++ b/setup/crm_lead_product/odoo/addons/crm_lead_product @@ -0,0 +1 @@ +../../../../crm_lead_product \ No newline at end of file diff --git a/setup/crm_lead_product/setup.py b/setup/crm_lead_product/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/crm_lead_product/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)