From c5a9a29309dec41bc03ba0cde7a4d05fb38b9efd Mon Sep 17 00:00:00 2001
From: Jairo Llopis <jairo.llopis@tecnativa.com>
Date: Tue, 13 Jul 2021 12:09:10 +0100
Subject: [PATCH] [FIX] apply and respect pre-commit hooks

---
 web_dialog_size/__manifest__.py                   |  2 +-
 web_group_expand/__manifest__.py                  | 15 +++++++++------
 web_ir_actions_act_multi/__manifest__.py          |  2 +-
 web_ir_actions_act_view_reload/__manifest__.py    |  2 +-
 web_ir_actions_act_window_message/__manifest__.py |  1 +
 web_listview_range_select/__manifest__.py         |  2 +-
 web_pwa_oca/models/res_config_settings.py         |  4 ++--
 web_widget_dropdown_dynamic/__manifest__.py       |  2 +-
 .../__manifest__.py                               |  2 +-
 web_widget_url_advanced/__manifest__.py           |  2 +-
 10 files changed, 19 insertions(+), 15 deletions(-)

diff --git a/web_dialog_size/__manifest__.py b/web_dialog_size/__manifest__.py
index 4e30520cc..74c18d003 100644
--- a/web_dialog_size/__manifest__.py
+++ b/web_dialog_size/__manifest__.py
@@ -13,7 +13,7 @@
     "Tecnativa, "
     "Amaris, "
     "Odoo Community Association (OCA)",
-    "website": "http://github.com/OCA/web",
+    "website": "https://github.com/OCA/web",
     "category": "web",
     "version": "13.0.1.0.0",
     "license": "AGPL-3",
diff --git a/web_group_expand/__manifest__.py b/web_group_expand/__manifest__.py
index 20d2f1fab..940622a72 100644
--- a/web_group_expand/__manifest__.py
+++ b/web_group_expand/__manifest__.py
@@ -3,12 +3,15 @@
     "category": "Web",
     "version": "13.0.1.0.0",
     "license": "AGPL-3",
-    "author": "OpenERP SA, "
-    "AvanzOSC, "
-    "Serv. Tecnol. Avanzados - Pedro M. Baeza, "
-    "Therp BV, "
-    "Xtendoo, "
-    "Odoo Community Association (OCA)",
+    "website": "https://github.com/OCA/web",
+    "author": (
+        "OpenERP SA, "
+        "AvanzOSC, "
+        "Serv. Tecnol. Avanzados - Pedro M. Baeza, "
+        "Therp BV, "
+        "Xtendoo, "
+        "Odoo Community Association (OCA)"
+    ),
     "depends": ["web"],
     "qweb": ["static/src/xml/expand_buttons.xml"],
     "data": ["views/templates.xml"],
diff --git a/web_ir_actions_act_multi/__manifest__.py b/web_ir_actions_act_multi/__manifest__.py
index 46393f20f..86e063ff7 100644
--- a/web_ir_actions_act_multi/__manifest__.py
+++ b/web_ir_actions_act_multi/__manifest__.py
@@ -11,7 +11,7 @@
     "version": "13.0.1.0.0",
     "license": "LGPL-3",
     "author": "Modoolar, " "CorporateHub, " "Odoo Community Association (OCA)",
-    "website": "https://github.com/OCA/web/",
+    "website": "https://github.com/OCA/web",
     "depends": ["web"],
     "data": ["views/web_ir_actions_act_multi.xml"],
     "installable": True,
diff --git a/web_ir_actions_act_view_reload/__manifest__.py b/web_ir_actions_act_view_reload/__manifest__.py
index 961f30643..142f94edd 100644
--- a/web_ir_actions_act_view_reload/__manifest__.py
+++ b/web_ir_actions_act_view_reload/__manifest__.py
@@ -10,7 +10,7 @@
     "version": "13.0.1.0.0",
     "license": "LGPL-3",
     "author": "Modoolar, CorporateHub, Odoo Community Association (OCA)",
-    "website": "https://github.com/OCA/web/",
+    "website": "https://github.com/OCA/web",
     "depends": ["web"],
     "data": ["views/web_ir_actions_act_view_reload.xml"],
     "installable": True,
diff --git a/web_ir_actions_act_window_message/__manifest__.py b/web_ir_actions_act_window_message/__manifest__.py
index 3742c30ec..e7eae4177 100644
--- a/web_ir_actions_act_window_message/__manifest__.py
+++ b/web_ir_actions_act_window_message/__manifest__.py
@@ -4,6 +4,7 @@
     "name": "Client side message boxes",
     "version": "13.0.1.0.0",
     "author": "Therp BV, " "ACSONE SA/NV, " "Odoo Community Association (OCA)",
+    "website": "https://github.com/OCA/web",
     "license": "AGPL-3",
     "category": "Hidden/Dependency",
     "summary": "Show a message box to users",
diff --git a/web_listview_range_select/__manifest__.py b/web_listview_range_select/__manifest__.py
index 98863c8ac..b718db96e 100644
--- a/web_listview_range_select/__manifest__.py
+++ b/web_listview_range_select/__manifest__.py
@@ -9,7 +9,7 @@
     "version": "13.0.1.0.0",
     "category": "Web",
     "author": "Onestein, Odoo Community Association (OCA)",
-    "website": "https://github.com/oca/web",
+    "website": "https://github.com/OCA/web",
     "license": "AGPL-3",
     "depends": ["web"],
     "data": ["templates/assets.xml"],
diff --git a/web_pwa_oca/models/res_config_settings.py b/web_pwa_oca/models/res_config_settings.py
index 274481a05..5e22c42df 100644
--- a/web_pwa_oca/models/res_config_settings.py
+++ b/web_pwa_oca/models/res_config_settings.py
@@ -4,11 +4,11 @@ import base64
 import io
 import sys
 
+from PIL import Image
+
 from odoo import _, api, exceptions, fields, models
 from odoo.tools.mimetypes import guess_mimetype
 
-from PIL import Image
-
 
 class ResConfigSettings(models.TransientModel):
     _inherit = "res.config.settings"
diff --git a/web_widget_dropdown_dynamic/__manifest__.py b/web_widget_dropdown_dynamic/__manifest__.py
index e556da8d1..879079b5b 100644
--- a/web_widget_dropdown_dynamic/__manifest__.py
+++ b/web_widget_dropdown_dynamic/__manifest__.py
@@ -8,7 +8,7 @@
     "version": "13.0.1.0.0",
     "license": "AGPL-3",
     "author": "CorporateHub, Odoo Community Association (OCA)",
-    "website": "https://github.com/OCA/web/",
+    "website": "https://github.com/OCA/web",
     "depends": ["web"],
     "data": ["templates/assets.xml"],
     "installable": True,
diff --git a/web_widget_dropdown_dynamic_example/__manifest__.py b/web_widget_dropdown_dynamic_example/__manifest__.py
index d958a76bb..2e96009d0 100644
--- a/web_widget_dropdown_dynamic_example/__manifest__.py
+++ b/web_widget_dropdown_dynamic_example/__manifest__.py
@@ -8,7 +8,7 @@
     "version": "13.0.1.0.0",
     "license": "AGPL-3",
     "author": "CorporateHub, Odoo Community Association (OCA)",
-    "website": "https://github.com/OCA/web/",
+    "website": "https://github.com/OCA/web",
     "depends": ["web_widget_dropdown_dynamic"],
     "data": ["views/web_widget_dropdown_dynamic_example.xml"],
     "installable": True,
diff --git a/web_widget_url_advanced/__manifest__.py b/web_widget_url_advanced/__manifest__.py
index 82dfc51d6..2e606b5c3 100644
--- a/web_widget_url_advanced/__manifest__.py
+++ b/web_widget_url_advanced/__manifest__.py
@@ -8,7 +8,7 @@
     "version": "13.0.1.1.1",
     "license": "LGPL-3",
     "author": "Camptocamp, Odoo Community Association (OCA)",
-    "website": "https://github.com/OCA/web/",
+    "website": "https://github.com/OCA/web",
     "depends": ["web"],
     "data": ["templates/assets.xml"],
     "installable": True,