guest_worker/sorteerhoed/Signal.py

10 lines
241 B
Python
Raw Normal View History

2019-10-23 10:56:28 +02:00
class Signal:
"""
An event, with possible parameters.
Named 'signal' to avoid confusion with threading.Event
"""
def __init__(self, name: str, params: dict):
self.name = name
self.params = params