Skip to content

Commit

Permalink
Ruff linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pattonw committed Dec 10, 2024
1 parent f59dab8 commit 5951848
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions funlib/persistence/arrays/ome_datasets.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
import logging
from itertools import chain
from pathlib import Path
from typing import Sequence
from funlib.geometry import Coordinate

import zarr
from iohub.ngff import open_ome_zarr, AxisMeta, TransformationMeta

import dask.array as da
import numpy as np
from iohub.ngff import AxisMeta, TransformationMeta, open_ome_zarr
from numpy.typing import DTypeLike

from funlib.geometry import Coordinate

from .array import Array
from .metadata import MetaData, OME_MetaDataFormat
from pathlib import Path
from itertools import chain

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_array.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import dask.array as da
import numpy as np
import pytest
import dask.array as da

from funlib.geometry import Coordinate, Roi
from funlib.persistence.arrays import Array
Expand Down

0 comments on commit 5951848

Please sign in to comment.