From e16e9a5bd2b83585e1e31670094a53755e06c0bf Mon Sep 17 00:00:00 2001 From: manu Date: Mon, 16 Jan 2023 18:21:09 +0100 Subject: [PATCH] [IMP] account_statement_import_paypal: black, isort, prettier --- .../odoo/addons/account_statement_import_paypal | 1 + setup/account_statement_import_paypal/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/account_statement_import_paypal/odoo/addons/account_statement_import_paypal create mode 100644 setup/account_statement_import_paypal/setup.py diff --git a/setup/account_statement_import_paypal/odoo/addons/account_statement_import_paypal b/setup/account_statement_import_paypal/odoo/addons/account_statement_import_paypal new file mode 120000 index 00000000..93fca2f1 --- /dev/null +++ b/setup/account_statement_import_paypal/odoo/addons/account_statement_import_paypal @@ -0,0 +1 @@ +../../../../account_statement_import_paypal \ No newline at end of file diff --git a/setup/account_statement_import_paypal/setup.py b/setup/account_statement_import_paypal/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_statement_import_paypal/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)