From 5acb9d5e5af295c676b4b460c17fe7a966f5d21f Mon Sep 17 00:00:00 2001 From: Mateusz Krasucki Date: Mon, 15 Jun 2020 15:14:35 +0000 Subject: [PATCH] ADD '246' to NotificationTypeEnumV8 --- eve_glue/notification_type.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/eve_glue/notification_type.py b/eve_glue/notification_type.py index a81ac1c..d9b8b4d 100644 --- a/eve_glue/notification_type.py +++ b/eve_glue/notification_type.py @@ -1,6 +1,5 @@ """Helpers for character notifications.""" - import enum from eve_glue.enums import new_from_enum @@ -197,8 +196,7 @@ class NotificationTypeEnumV2(enum.Enum): add={ "StructuresJobsPaused": 210, "StructuresJobsCancelled": 211, - } -) + }) NotificationTypeEnumV4 = new_from_enum( # pylint: disable=invalid-name "NotificationTypeEnumV4", @@ -206,8 +204,7 @@ class NotificationTypeEnumV2(enum.Enum): add={ "CombatOperationFinished": 1013, "IndustryOperationFinished": 1014 - } -) + }) NotificationTypeEnumV5 = new_from_enum( # pylint: disable=invalid-name "NotificationTypeEnumV5", @@ -247,8 +244,7 @@ class NotificationTypeEnumV2(enum.Enum): add={ "MercOfferRetractedMsg": 241, "OfferToAllyRetracted": 242, - } -) + }) NotificationTypeEnumV8 = new_from_enum( # pylint: disable=invalid-name "NotificationTypeEnumV8", @@ -257,6 +253,7 @@ class NotificationTypeEnumV2(enum.Enum): "RaffleCreated": 243, "RaffleExpired": 244, "RaffleFinished": 245, + "WarEndedHqSecurityDrop": 246, "StructureImpendingAbandonmentAssetsAtRisk": 249 } )