From 3b4d959acfca45a3edde9d4f13f23ebc8e6e51c2 Mon Sep 17 00:00:00 2001 From: Mateusz Krasucki Date: Tue, 13 Aug 2019 09:37:21 +0000 Subject: [PATCH] ADD add new notification types - Adds NotificationTypeEnumV7 with two new notification types. --- eve_glue/notification_type.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/eve_glue/notification_type.py b/eve_glue/notification_type.py index e65c8d6..7aa8bb7 100644 --- a/eve_glue/notification_type.py +++ b/eve_glue/notification_type.py @@ -240,3 +240,12 @@ class NotificationTypeEnumV2(enum.Enum): "WarInvalid": 240, } ) + +NotificationTypeEnumV7 = new_from_enum( # pylint: disable=invalid-name + "NotificationTypeEnumV7", + NotificationTypeEnumV6, + add={ + "MercOfferRetractedMsg": 241, + "OfferToAllyRetracted": 242, + } +)