Skip to content

Commit

Permalink
Merge pull request #27 from esi/add-expert-system-notification-types
Browse files Browse the repository at this point in the history
add new notification types to enum
  • Loading branch information
gitAskur authored Mar 18, 2021
2 parents 9134e81 + 2148bc4 commit 170ef49
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 @@ -264,3 +264,12 @@ class NotificationTypeEnumV2(enum.Enum):
"ContractRegionChangedToPochven": 251,
}
)

NotificationTypeEnumV9 = new_from_enum( # pylint: disable=invalid-name
"NotificationTypeEnumV9",
NotificationTypeEnumV8,
add={
"NotificationTypeExpertSystemExpiryImminent": 252,
"NotificationTypeExpertSystemExpired": 253,
}
)

0 comments on commit 170ef49

Please sign in to comment.