From bfd3f586621fb8d2b13aba8ea47d7f6b8e3a0199 Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 17 Apr 2026 21:45:31 -0400 Subject: [PATCH] Fix storage discover signature mismatch --- radicale_storage_decsync/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale_storage_decsync/__init__.py b/radicale_storage_decsync/__init__.py index b5e7ba2..1b63da7 100644 --- a/radicale_storage_decsync/__init__.py +++ b/radicale_storage_decsync/__init__.py @@ -157,8 +157,8 @@ def __init__(self, configuration): self.decsync_dir = "" def discover(self, path, depth="0", child_context_manager=( - lambda path, href=None: contextlib.ExitStack())): - collections = list(super().discover(path, depth, child_context_manager)) + lambda path, href=None: contextlib.ExitStack()),user_groups=set()): + collections = list(super().discover(path, depth, child_context_manager, user_groups)) for collection in collections: yield collection