Files
changedetection.io/changedetectionio/model/Tag.py
T
2024-12-29 16:07:12 +01:00

15 lines
338 B
Python

from changedetectionio.model import WatchBase
class model(WatchBase):
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']