Skip to content

Commit

Permalink
add necessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Nov 21, 2024
1 parent 3a46db5 commit ae61013
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spotfishing/roi_tools.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
"""Tools for working with spots/ROIs"""

from typing import TypeAlias
from typing import Any, Mapping, TypeAlias

from gertils.geometry import ImagePoint3D
from numpydoc_decorator import doc
from pandas import Series

from .detection_result import RoiCenterKeys

Record: TypeAlias = pd.Series | Mapping[str, Any] # type: ignore[misc,type-arg]
Record: TypeAlias = Series | Mapping[str, Any] # type: ignore[misc,type-arg]


@doc(
Expand Down

0 comments on commit ae61013

Please sign in to comment.