From 9e456f5a111703a2615285ec13bd8639da97e92e Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 18 Feb 2020 08:15:05 +1100 Subject: [PATCH] Flake fix --- InvenTree/stock/models.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/InvenTree/stock/models.py b/InvenTree/stock/models.py index fbf262ab5c..c2e8a86b08 100644 --- a/InvenTree/stock/models.py +++ b/InvenTree/stock/models.py @@ -615,10 +615,11 @@ class StockItem(MPTTModel): self.location = location - self.addTransactionNote(msg, - user, - notes=notes, - system=True) + self.addTransactionNote( + msg, + user, + notes=notes, + system=True) self.save()