From fb986ea02e27a9b142b5c45674396731592e6e5a Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 27 Mar 2025 08:30:22 +0100 Subject: [PATCH] fix for flake8 --- radicale/app/put.py | 2 +- radicale/storage/multifilesystem/lock.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/app/put.py b/radicale/app/put.py index 962bf756..fda6140b 100644 --- a/radicale/app/put.py +++ b/radicale/app/put.py @@ -165,7 +165,7 @@ class ApplicationPartPut(ApplicationBase): bool(rights.intersect(access.permissions, "Ww")), bool(rights.intersect(access.parent_permissions, "w"))) - with self._storage.acquire_lock("w", user): + with self._storage.acquire_lock("w", user, path=path): item = next(iter(self._storage.discover(path)), None) parent_item = next(iter( self._storage.discover(access.parent_path)), None) diff --git a/radicale/storage/multifilesystem/lock.py b/radicale/storage/multifilesystem/lock.py index d21e4a7f..aa29049d 100644 --- a/radicale/storage/multifilesystem/lock.py +++ b/radicale/storage/multifilesystem/lock.py @@ -59,7 +59,7 @@ class StoragePartLock(StorageBase): self._hook = configuration.get("storage", "hook") @types.contextmanager - def acquire_lock(self, mode: str, user: str = "") -> Iterator[None]: + def acquire_lock(self, mode: str, user: str = "", *args, **kwargs) -> Iterator[None]: with self._lock.acquire(mode): yield # execute hook