mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-03-13 09:13:20 -06: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()
|