Skip to content

Commit

Permalink
future import
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Mar 16, 2024
1 parent 2002674 commit c17fb89
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/nd2/tiff.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"""Functions for converting nd2 to tiff files."""

from __future__ import annotations

import warnings
from os import PathLike
from pathlib import Path
from typing import TYPE_CHECKING, Any, Callable, Iterable, Iterator

import numpy as np

from nd2._ome import nd2_ome_metadata
from nd2.nd2file import ND2File

Expand All @@ -33,7 +33,9 @@ def _progress(


if TYPE_CHECKING:
from .nd2file import ND2File # noqa: TCH004
import numpy as np

from .nd2file import ND2File


def nd2_to_tiff(
Expand Down

0 comments on commit c17fb89

Please sign in to comment.