From 83f35e98e4fd7fac2f6c7bf93f122cb512e16419 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 19 Aug 2025 16:23:16 +0200 Subject: [PATCH] Fix import --- changedetectionio/flask_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changedetectionio/flask_app.py b/changedetectionio/flask_app.py index 231346d93..6e52d4ed9 100644 --- a/changedetectionio/flask_app.py +++ b/changedetectionio/flask_app.py @@ -326,10 +326,10 @@ def changedetection_app(config=None, datastore_o=None): resource_class_kwargs={'datastore': datastore}) watch_api.add_resource(Tags, '/api/v1/tags', - resource_class_kwargs={'datastore': datastore, 'update_q': update_q}) + resource_class_kwargs={'datastore': datastore}) watch_api.add_resource(Tag, '/api/v1/tag', '/api/v1/tag/', - resource_class_kwargs={'datastore': datastore}) + resource_class_kwargs={'datastore': datastore, 'update_q': update_q}) watch_api.add_resource(Search, '/api/v1/search', resource_class_kwargs={'datastore': datastore})