mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-11-29 21:03:21 +00:00
15 lines
262 B
Python
15 lines
262 B
Python
|
|
from changedetectionio.model import watch_base
|
|
|
|
class model(watch_base):
|
|
|
|
def __init__(self, *arg, **kw):
|
|
|
|
super(model, self).__init__(*arg, **kw)
|
|
|
|
if kw.get('default'):
|
|
self.update(kw['default'])
|
|
del kw['default']
|
|
|
|
|