mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-10-17 15:02:01 +00:00
7 lines
140 B
Python
7 lines
140 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import wx
|
||
|
|
||
|
class notification(object):
|
||
|
|
||
|
def notify(self, title, text):
|
||
|
wx.NotificationMessage(title, text).Show()
|