From cfd509adb48643a68f63056ed26a97da77f17665 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 4 Dec 2021 17:43:11 +0100 Subject: [PATCH] PEP fix --- InvenTree/common/test_notifications.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index 846d1fba09..31cf10199a 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -50,7 +50,8 @@ class NotificationTests(BaseNotificationIntegrationTest): # no get_targets with self.assertRaises(NotImplementedError): - AnotherFalseNotificationMethod('', '', '', {'name': 1, 'message': 2, } ) + AnotherFalseNotificationMethod('', '', '', {'name': 1, 'message': 2, }, ) + def test_SingleNotificationMethod(self):