mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Fix variable naming to conform with PEP-8
Originally proposed by @ZipFile in #998
This commit is contained in:
parent
d3d11d0ec8
commit
6202257fc2
10 changed files with 48 additions and 49 deletions
|
@ -270,8 +270,8 @@ class ApplicationReportMixin:
|
|||
logger.debug("client timed out", exc_info=True)
|
||||
return httputils.REQUEST_TIMEOUT
|
||||
with contextlib.ExitStack() as lock_stack:
|
||||
lock_stack.enter_context(self.Collection.acquire_lock("r", user))
|
||||
item = next(self.Collection.discover(path), None)
|
||||
lock_stack.enter_context(self.storage.acquire_lock("r", user))
|
||||
item = next(self.storage.discover(path), None)
|
||||
if not item:
|
||||
return httputils.NOT_FOUND
|
||||
if not self.access(user, path, "r", item):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue