From 81f5e939d5dc5c8638ed59333c5276cbfa4a734d Mon Sep 17 00:00:00 2001 From: Adil Houmadi Date: Thu, 17 Jul 2014 22:57:41 +0200 Subject: [PATCH] Flake8 issues --- web_easy_switch_company/controllers/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web_easy_switch_company/controllers/main.py b/web_easy_switch_company/controllers/main.py index 5215e1ac..346d7eb7 100644 --- a/web_easy_switch_company/controllers/main.py +++ b/web_easy_switch_company/controllers/main.py @@ -1,5 +1,5 @@ -#-*- encoding: utf-8 -*- -############################################################################## +# -*- encoding: utf-8 -*- +# ############################################################################# # # Web Easy Switch Company module for OpenERP # Copyright (C) 2014 GRAP (http://www.grap.coop) @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -############################################################################## +############################################################################# import openerp import openerp.http as http from openerp.http import request @@ -31,4 +31,4 @@ class WebEasySwitchCompanyController(http.Controller): uid = request.session.uid with registry.cursor() as cr: res = registry.get("res.users").change_current_company(cr, uid, company_id) - return res \ No newline at end of file + return res