9 lines
133 B
Python
9 lines
133 B
Python
import logging
|
|
|
|
logger = logging.getLogger('AppDaemon.Perimeter')
|
|
logger.info('Imported statemachine')
|
|
|
|
|
|
class StateMachine:
|
|
...
|