From 013c9039b4dbe8ef4eaa6b3328c06c6c3a498ca7 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 2 Mar 2023 13:14:41 +0100 Subject: [PATCH] connector_importer_product: make not installable --- .pre-commit-config.yaml | 1 + connector_importer_product/__manifest__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e59cbbeea..324e3162f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,7 @@ exclude: | (?x) # NOT INSTALLABLE ADDONS + ^connector_importer_product/| # END NOT INSTALLABLE ADDONS # Files and folders generated by bots, to avoid loops ^setup/|/static/description/index\.html$| diff --git a/connector_importer_product/__manifest__.py b/connector_importer_product/__manifest__.py index fee0e9d7c..289491bef 100644 --- a/connector_importer_product/__manifest__.py +++ b/connector_importer_product/__manifest__.py @@ -22,5 +22,5 @@ "demo/import_source.xml", "demo/import_recordset.xml", ], - "installable": True, + "installable": False, }