mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-03-13 01:03:21 -06:00
9 lines
208 B
Python
9 lines
208 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
from builtins import object
|
|
import wx
|
|
|
|
class notification(object):
|
|
|
|
def notify(self, title, text):
|
|
wx.NotificationMessage(title, text).Show() |