From 60cefca3d77dfed65025636fb830e521a6eb69f3 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 22 Jul 2022 18:58:42 +0200 Subject: [PATCH] Not needed --- changedetectionio/store.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/changedetectionio/store.py b/changedetectionio/store.py index 3210e789..da7835f1 100644 --- a/changedetectionio/store.py +++ b/changedetectionio/store.py @@ -9,7 +9,6 @@ import time import uuid as uuid_builder from copy import deepcopy from os import mkdir, path, unlink -from model.Watch import mtable from threading import Lock import re import requests @@ -159,7 +158,7 @@ class ChangeDetectionStore: @property def threshold_seconds(self): seconds = 0 - for m, n in mtable.items(): + for m, n in Watch.mtable.items(): x = self.__data['settings']['requests']['time_between_check'].get(m) if x: seconds += x * n