Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 31, 2024
1 parent b3d3b16 commit 6d718e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[settings]
known_third_party = dask,numcodecs,numpy,pytest,scipy,setuptools,skimage,zarr
known_third_party = dask,fsspec,numcodecs,numpy,pytest,scipy,setuptools,skimage,zarr
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
Expand Down
8 changes: 5 additions & 3 deletions tests/test_io.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import pytest
import zarr
from pathlib import Path

import fsspec
import pytest
import zarr

from ome_zarr.data import create_zarr
from ome_zarr.io import ZarrLocation, parse_url


class TestIO:
@pytest.fixture(autouse=True)
def initdir(self, tmpdir):
Expand All @@ -31,6 +33,6 @@ def test_loc_store(self):

def test_loc_fs(self):
fs = fsspec.filesystem("memory")
fsstore = zarr.storage.FSStore(url='/', fs=fs)
fsstore = zarr.storage.FSStore(url="/", fs=fs)
loc = ZarrLocation(fsstore)
assert loc

0 comments on commit 6d718e0

Please sign in to comment.