Skip to content

Commit

Permalink
remove nonexistent numpy types
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Mar 15, 2024
1 parent 652ff20 commit 356053d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spotfishing/detectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
__all__ = ["detect_spots_dog", "detec_spots_int"]

Numeric = Union[int, float]
NumpyInt = Union[np.int8, np.int16, np.int32, np.int64, np.int128, np.int256]
NumpyFloat = Union[np.float16, np.float32, np.float64, np.float128, np.float256]
NumpyInt = Union[np.int8, np.int16, np.int32, np.int64]
NumpyFloat = Union[np.float16, np.float32, np.float64]
PixelValue = Union[np.int8, np.int16]


Expand Down

0 comments on commit 356053d

Please sign in to comment.