From 5b5724cc6869796dddb2b820fda48e8c33115d2f Mon Sep 17 00:00:00 2001 From: Joan Mateu Jordi Date: Thu, 28 Oct 2021 08:58:06 +0200 Subject: [PATCH] [IMP] account_move_line_stock_info black, isort, prettier --- .../tests/test_account_move_line_stock_move.py | 2 +- .../odoo/addons/account_move_line_stock_info | 1 + setup/account_move_line_stock_info/setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info create mode 100644 setup/account_move_line_stock_info/setup.py diff --git a/account_move_line_stock_info/tests/test_account_move_line_stock_move.py b/account_move_line_stock_info/tests/test_account_move_line_stock_move.py index e0e32f154..30f844f3b 100644 --- a/account_move_line_stock_info/tests/test_account_move_line_stock_move.py +++ b/account_move_line_stock_info/tests/test_account_move_line_stock_move.py @@ -59,7 +59,7 @@ class TestAccountMoveLineStockInfo(TransactionCase): ) def _create_user(self, login, groups, company): - """ Create a user.""" + """Create a user.""" group_ids = [group.id for group in groups] user = self.res_users_model.with_context({"no_reset_password": True}).create( { diff --git a/setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info b/setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info new file mode 120000 index 000000000..3132f76c5 --- /dev/null +++ b/setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info @@ -0,0 +1 @@ +../../../../account_move_line_stock_info \ No newline at end of file diff --git a/setup/account_move_line_stock_info/setup.py b/setup/account_move_line_stock_info/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_move_line_stock_info/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)