7 lines
225 B
Python
7 lines
225 B
Python
from trigger import Trigger
|
|
from config import Config
|
|
|
|
class RoonTrigger(Trigger):
|
|
def __init__(self, name: str, _config: Config, testmode: bool = False) -> None:
|
|
super().__init__(name, _config, testmode)
|
|
|