flake8 error fixed

This commit is contained in:
Gervais Naoussi 2015-11-13 15:36:00 -05:00 committed by fayez
parent 4cc65e5482
commit 00e02e2f61
2 changed files with 15 additions and 17 deletions

View File

@ -1,4 +1,3 @@
"""Knowledge Management System module."""
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
@ -20,20 +19,20 @@
# #
############################################################################## ##############################################################################
{ {
'name': 'Knowledge Management System', "name": "Knowledge Management System",
'version': '9.0.1.0.0', "version": "9.0.1.0.0",
'depends': ['base', 'base_setup'], "depends": ["base", "base_setup"],
'author': 'OpenERP SA, Odoo Community Association (OCA)', "author": "OpenERP SA, Odoo Community Association (OCA)",
'category': 'Hidden/Dependency', "category": "Hidden/Dependency",
'license': 'AGPL-3', "license": "AGPL-3",
'website': 'https://www.odoo.com', "website": "https://www.odoo.com",
'data': [ "data": [
'security/knowledge.xml', "security/knowledge.xml",
'security/ir.model.access.csv', "security/ir.model.access.csv",
'views/knowledge.xml', "views/knowledge.xml",
'views/res_config.xml', "views/res_config.xml",
], ],
'demo': ['demo/knowledge.xml'], "demo": ["demo/knowledge.xml"],
'installable': True, "installable": True,
'auto_install': False, "auto_install": False,
} }

View File

@ -1,5 +1,4 @@
"""model's module imported.""" """model's module imported."""
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #