From 59cf9825fe9d11adbc124a758dc4e505a1828e94 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 12 May 2022 15:16:26 +1000 Subject: [PATCH] Update comment --- InvenTree/part/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/part/models.py b/InvenTree/part/models.py index 492da8f5de..96ffa581f4 100644 --- a/InvenTree/part/models.py +++ b/InvenTree/part/models.py @@ -2233,7 +2233,7 @@ class Part(MPTTModel): for child in children: parts.append(child) - # Immediate parent + # Immediate parent, and siblings if self.variant_of: parts.append(self.variant_of)