From 1ef7163b948246b9d7a6275d3940fa4910206fed Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 4 Dec 2021 02:39:41 +0100 Subject: [PATCH] remove one uncovered line :-) --- InvenTree/common/test_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index 328d0e6ae1..1200c3be3c 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -17,7 +17,7 @@ class NotificationTests(BaseNotificationIntegrationTest): METHOD_NAME = 'AnotherFalseNotification' def send(self): - pass + """a comment so we do not need a pass""" class NoNameNotificationMethod(NotificationMethod): pass