Skip to content

Commit 5e5376f

Browse files
committed
lint
1 parent 8d3b66c commit 5e5376f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/conftest.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
test_bucket_name = "test"
3636
secure_bucket_name = "test-secure"
3737

38+
3839
def as_mutable(store: Store) -> Store:
3940
"""
4041
Return a mutable version of the store
@@ -48,7 +49,8 @@ def as_mutable(store: Store) -> Store:
4849
if isinstance(store, ZipStore):
4950
store.close()
5051
return sync(ZipStore.open(path=store.path, read_only=False))
51-
raise ValueError(f'Unknown store type: {type(store)}')
52+
raise ValueError(f"Unknown store type: {type(store)}")
53+
5254

5355
def as_immutable(store: Store) -> Store:
5456
"""
@@ -63,7 +65,8 @@ def as_immutable(store: Store) -> Store:
6365
if isinstance(store, ZipStore):
6466
store.close()
6567
return sync(ZipStore.open(path=store.path, read_only=True))
66-
raise ValueError(f'Unknown store type: {type(store)}')
68+
raise ValueError(f"Unknown store type: {type(store)}")
69+
6770

6871
async def parse_store(
6972
store: str,

0 commit comments

Comments
 (0)