Libraries: Python: Add success level to Notifications

pull/28/head
Marc Egerton 2021-04-08 16:45:11 +01:00
parent d4cd34b3a5
commit ee88990297
No known key found for this signature in database
GPG Key ID: A11F9CA36DF845E0
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ INFO = 0
WARN = 1 WARN = 1
ERROR = 2 ERROR = 2
OTHER = 3 OTHER = 3
SUCCESS = 4
def send_notification(message: str, module_name: str, level: int = INFO) -> bool: def send_notification(message: str, module_name: str, level: int = INFO) -> bool: