Skip to content

Commit d9734c3

Browse files
author
Martin Durant
committed
flake clean
1 parent c3f7327 commit d9734c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

zarr/hierarchy.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,8 @@ def open_group(store=None, mode='a', cache_attrs=True, synchronizer=None, path=N
11461146
clobber = mode != 'r'
11471147
store = _normalize_store_arg(store, clobber=clobber, storage_options=storage_options)
11481148
if chunk_store is not None:
1149-
chunk_store = _normalize_store_arg(chunk_store, clobber=clobber, storage_options=storage_options)
1149+
chunk_store = _normalize_store_arg(chunk_store, clobber=clobber,
1150+
storage_options=storage_options)
11501151
path = normalize_storage_path(path)
11511152

11521153
# ensure store is initialized

zarr/storage.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import multiprocessing
2222
import operator
2323
import os
24-
import json
2524
import re
2625
import shutil
2726
import sys

0 commit comments

Comments
 (0)