From f6e029c717cc6c9c1cfe83c71a2f53d6690fee84 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Wed, 8 Jan 2020 16:23:56 +0100 Subject: [PATCH] fixup! Add module base_m2m_custom_field --- base_m2m_custom_field/__init__.py | 2 +- base_m2m_custom_field/readme/USAGE.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/base_m2m_custom_field/__init__.py b/base_m2m_custom_field/__init__.py index dffa98a97..735443893 100644 --- a/base_m2m_custom_field/__init__.py +++ b/base_m2m_custom_field/__init__.py @@ -1 +1 @@ -from . import fields \ No newline at end of file +from . import fields diff --git a/base_m2m_custom_field/readme/USAGE.rst b/base_m2m_custom_field/readme/USAGE.rst index 04132fc68..834fa397d 100644 --- a/base_m2m_custom_field/readme/USAGE.rst +++ b/base_m2m_custom_field/readme/USAGE.rst @@ -38,12 +38,12 @@ Let's consider following models: my_model_a_id = fields.Many2one( 'my.model.a', required=True, - index=True, + index=True, # Index is mandatory here ) my_model_b_id = fields.Many2one( 'my.model.b', required=True, - index=True, + index=True, # Index is mandatory here )