Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: jakirkham <jakirkham@gmail.com>
  • Loading branch information
grlee77 and jakirkham authored Jan 26, 2024
1 parent c4c9fc5 commit 0cc75e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/cucim/src/cucim/skimage/_vendored/_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import cupy

# TODO: when minimum numpy dependency is 1.25 use:
# np..exceptions.AxisError instead of AxisError
# np.exceptions.AxisError instead of AxisError
# and remove this try-except
try:
from numpy import AxisError
Expand Down
2 changes: 1 addition & 1 deletion python/cucim/src/cucim/skimage/color/colorconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
from ..util import dtype, dtype_limits

# TODO: when minimum numpy dependency is 1.25 use:
# np..exceptions.AxisError instead of AxisError
# np.exceptions.AxisError instead of AxisError
# and remove this try-except
try:
from numpy import AxisError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
from cucim.skimage.util import img_as_float, img_as_float32, img_as_ubyte

# TODO: when minimum numpy dependency is 1.25 use:
# np..exceptions.AxisError instead of AxisError
# np.exceptions.AxisError instead of AxisError
# and remove this try-except
try:
from numpy import AxisError
Expand Down
2 changes: 1 addition & 1 deletion python/cucim/src/cucim/skimage/measure/_blur_effect.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ..util import img_as_float

# TODO: when minimum numpy dependency is 1.25 use:
# np..exceptions.AxisError instead of AxisError
# np.exceptions.AxisError instead of AxisError
# and remove this try-except
try:
from numpy import AxisError
Expand Down

0 comments on commit 0cc75e2

Please sign in to comment.