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