Skip to content

Commit

Permalink
[FIX] rma_scrap: minor lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronHForgeFlow committed Aug 8, 2024
1 parent b8b29a7 commit 085d05f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rma_scrap/models/rma_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ class RmaOperation(models.Model):
scrap_location_id = fields.Many2one(
comodel_name="stock.location",
string="Scrap Destination Location",
domain="[('scrap_location', '=', True), ('company_id', 'in', [company_id, False])]",
domain="[('scrap_location', '=', True),"
"('company_id', 'in', [company_id, False])]",
)

0 comments on commit 085d05f

Please sign in to comment.