Skip to content

Commit e11fa35

Browse files
pre-commit-ci[bot]WhyNotHugo
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e20a657 commit e11fa35

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

tests/storage/test_memory.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
class TestMemoryStorage(StorageTests):
9-
109
storage_class = MemoryStorage
1110
supports_collections = False
1211

tests/storage/test_singlefile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
class TestSingleFileStorage(StorageTests):
9-
109
storage_class = SingleFileStorage
1110
supports_metadata = False
1211

tests/system/cli/test_sync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ def get_cfg():
278278
],
279279
)
280280
def test_create_collections(collections, tmpdir, runner):
281-
282281
runner.write_with_general(
283282
dedent(
284283
"""

vdirsyncer/cli/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ def metasync(ctx, collections):
165165

166166
async def main(collection_names):
167167
async with aiohttp.TCPConnector(limit_per_host=16) as conn:
168-
169168
for pair_name, collections in collection_names:
170169
collections = prepare_pair(
171170
pair_name=pair_name,

vdirsyncer/storage/filesystem.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919

2020
class FilesystemStorage(Storage):
21-
2221
storage_name = "filesystem"
2322
_repr_attributes = ["path"]
2423

vdirsyncer/storage/memory.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def _random_string():
1010

1111

1212
class MemoryStorage(Storage):
13-
1413
storage_name = "memory"
1514

1615
"""

vdirsyncer/sync/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ def __init__(self, item, dest):
199199
self.dest = dest
200200

201201
async def _run_impl(self, a, b):
202-
203202
if self.dest.storage.read_only:
204203
href = etag = None
205204
else:

0 commit comments

Comments
 (0)