From 9cba3d85b5f1c1b8568676718990ade1b63b9712 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com>
Date: Wed, 7 Jul 2021 16:13:08 +0200
Subject: [PATCH] [fix] indentation

---
 report/__init__.py                 | 4 ++--
 report/product_pricelist_report.py | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/report/__init__.py b/report/__init__.py
index 5376788..f1728b3 100644
--- a/report/__init__.py
+++ b/report/__init__.py
@@ -1,4 +1,4 @@
-# -*- coding: utf-8 -*-
-# Part of Odoo. See LICENSE file for full copyright and licensing details.
+# Copyright 2021 Le Filament (<http://www.le-filament.com>)
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
 
 from . import product_pricelist_report
diff --git a/report/product_pricelist_report.py b/report/product_pricelist_report.py
index d9c6c9e..599d114 100644
--- a/report/product_pricelist_report.py
+++ b/report/product_pricelist_report.py
@@ -1,8 +1,9 @@
 # Copyright 2021 Le Filament (<http://www.le-filament.com>)
 # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
 
+
 class report_product_pricelist(models.AbstractModel):
-     _inherit = 'report.product.report_pricelist'
+    _inherit = 'report.product.report_pricelist'
 
     def _get_product_data(self, is_product_tmpl, product, pricelist, quantities):
         data = super()._get_product_data(is_product_tmpl, product, pricelist, quantities)
-- 
GitLab