platypush/platypush/message/event/clipboard.py

10 lines
200 B
Python
Raw Normal View History

2020-05-23 23:11:42 +02:00
from platypush.message.event import Event
class ClipboardEvent(Event):
def __init__(self, text: str, *args, **kwargs):
super().__init__(*args, text=text, **kwargs)
# vim:sw=4:ts=4:et: