9 lines
208 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2019-06-06 11:52:23 -05:00
from __future__ import unicode_literals
from builtins import object
import wx
class notification(object):
def notify(self, title, text):
wx.NotificationMessage(title, text).Show()