[IMP] mrp_production_note: black, isort

This commit is contained in:
ps-tubtim
2020-03-12 13:31:15 +07:00
committed by janikvonrotz
parent e69316c9ad
commit 8a863e705a
2 changed files with 7 additions and 11 deletions

View File

@@ -3,19 +3,15 @@
{
"name": "Notes in production orders",
"version": "12.0.1.0.0",
"version": "13.0.1.0.0",
"category": "Manufacturing",
"license": "AGPL-3",
"author": "OdooMRP team, "
"AvanzOSC, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"Odoo Community Association (OCA)",
"AvanzOSC, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/manufacture",
"depends": [
"mrp",
],
"data": [
"views/mrp_production_view.xml",
],
"depends": ["mrp"],
"data": ["views/mrp_production_view.xml"],
"installable": True,
}

View File

@@ -5,6 +5,6 @@ from odoo import fields, models
class MrpProduction(models.Model):
_inherit = 'mrp.production'
_inherit = "mrp.production"
notes = fields.Html()