Spaces:
Paused
Paused
File size: 340 Bytes
046723b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from changedetectionio.model import watch_base
class model(watch_base):
def __init__(self, *arg, **kw):
super(model, self).__init__(*arg, **kw)
self['overrides_watch'] = kw.get('default', {}).get('overrides_watch')
if kw.get('default'):
self.update(kw['default'])
del kw['default']
|