[IMP] mrp_multi_level: black, isort, prettier

This commit is contained in:
Christopher Ormaza
2021-12-10 11:28:16 -05:00
committed by joan
parent 091db5baee
commit 2ef00de33c
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ from odoo import fields, models
class MrpProduction(models.Model):
""" Manufacturing Orders """
"""Manufacturing Orders"""
_inherit = "mrp.production"

View File

@@ -441,7 +441,7 @@ class MultiLevelMrp(models.TransientModel):
@api.model
def _exclude_from_mrp(self, product, mrp_area):
""" To extend with various logic where needed. """
"""To extend with various logic where needed."""
product_mrp_area = self.env["product.mrp.area"].search(
[("product_id", "=", product.id), ("mrp_area_id", "=", mrp_area.id)],
limit=1,