Skip to content

Commit

Permalink
ADD add new notification types
Browse files Browse the repository at this point in the history
- Adds NotificationTypeEnumV7 with two new notification types.
  • Loading branch information
mateuszkrasucki committed Aug 13, 2019
1 parent d8dddf9 commit 3b4d959
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions eve_glue/notification_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
)

0 comments on commit 3b4d959

Please sign in to comment.