Skip to content

Commit

Permalink
chore(dataset): fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Aug 26, 2024
1 parent 2313553 commit ac9dfe3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions cryosparc/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
Any,
Callable,
Collection,
Container,
Dict,
Generator,
Generic,
Expand Down Expand Up @@ -70,7 +69,7 @@
from .errors import DatasetLoadError
from .row import R, Row, Spool
from .stream import AsyncBinaryIO, Streamable
from .util import bopen, default_rng, hashcache, random_integers, u32bytesle, u32intle
from .util import bopen, default_rng, random_integers, u32bytesle, u32intle

if TYPE_CHECKING:
from numpy.typing import ArrayLike, DTypeLike, NDArray
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dataset_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def test_inspect(big_dset_path, fields):
result = Dataset.inspect(big_dset_path)
assert result["length"] == 1961726
assert result["dtype"] == fields
assert result["compression"] == None
assert result["compression"] is None
assert result["compressed_fields"] == []


Expand Down

0 comments on commit ac9dfe3

Please sign in to comment.