We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db6da70 + 63ef204 commit ddaeccbCopy full SHA for ddaeccb
.pre-commit-config.yaml
@@ -23,7 +23,7 @@ repos:
23
- id: isort
24
name: isort (python)
25
- repo: https://github.com/asottile/pyupgrade
26
- rev: v2.26.0
+ rev: v2.28.0
27
hooks:
28
- id: pyupgrade
29
args: [--py37-plus]
vdirsyncer/storage/dav.py
@@ -851,7 +851,7 @@ async def list(self):
851
# instead?
852
#
853
# See https://github.com/dmfs/tasks/issues/118 for backstory.
854
- async for href, etag in DAVStorage.list(self):
+ async for href, etag in super().list():
855
yield href, etag
856
857
data = """<?xml version="1.0" encoding="utf-8" ?>
0 commit comments