From 74ce0840671040365fed96f7b66a7f190b7280c3 Mon Sep 17 00:00:00 2001 From: tarteo Date: Fri, 24 Feb 2017 09:56:21 +0100 Subject: [PATCH] [FIX] Flake8 --- web_shortcut/__init__.py | 1 + web_shortcut/models/ir_ui_menu.py | 1 + web_shortcut/models/web_shortcut.py | 1 - web_shortcut/tests/__init__.py | 1 + web_shortcut/tests/test_web_shortcut.py | 3 ++- 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/web_shortcut/__init__.py b/web_shortcut/__init__.py index aa9b673b9..54576ac40 100644 --- a/web_shortcut/__init__.py +++ b/web_shortcut/__init__.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution diff --git a/web_shortcut/models/ir_ui_menu.py b/web_shortcut/models/ir_ui_menu.py index 74fdaef87..175a53255 100644 --- a/web_shortcut/models/ir_ui_menu.py +++ b/web_shortcut/models/ir_ui_menu.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from openerp import models, fields, api diff --git a/web_shortcut/models/web_shortcut.py b/web_shortcut/models/web_shortcut.py index 108189758..e1fff30cd 100644 --- a/web_shortcut/models/web_shortcut.py +++ b/web_shortcut/models/web_shortcut.py @@ -52,4 +52,3 @@ class WebShortcut(models.Model): } ) return res - diff --git a/web_shortcut/tests/__init__.py b/web_shortcut/tests/__init__.py index cc77db541..60a5ed88f 100644 --- a/web_shortcut/tests/__init__.py +++ b/web_shortcut/tests/__init__.py @@ -1 +1,2 @@ +# -*- coding: utf-8 -*- from . import test_web_shortcut diff --git a/web_shortcut/tests/test_web_shortcut.py b/web_shortcut/tests/test_web_shortcut.py index f4c0b2221..368443483 100644 --- a/web_shortcut/tests/test_web_shortcut.py +++ b/web_shortcut/tests/test_web_shortcut.py @@ -1,4 +1,5 @@ -from openerp.tests.common import HttpCase, TransactionCase +# -*- coding: utf-8 -*- +from openerp.tests.common import TransactionCase class TestWebShortcut(TransactionCase):