platypush/platypush/message/event/weather.py
2018-07-09 22:38:08 +02:00

13 lines
259 B
Python

from platypush.message.event import Event
class NewWeatherConditionEvent(Event):
"""
Event triggered when the weather condition changes
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# vim:sw=4:ts=4:et: