Source code for pydevmgr_elt.devices.time.cfg
from pydevmgr_core import Defaults, NodeVar
from pydevmgr_elt.base import EltDevice
Base = EltDevice.Interface
N = Base.Node # Base Node
NC = N.Config
ND = Defaults[NC] # this typing var says that it is a Node object holding default values
NV = NodeVar # used in Data
# Nothing to declare cfg is empty
class TimeCfg(Base):
class Config(Base.Config):
pass
class Data(Base.Data):
pass