Skip to content

Commit

Permalink
Merge pull request #384 from jburel/numpy_math
Browse files Browse the repository at this point in the history
use math module instead of numpy.math
  • Loading branch information
joshmoore authored Oct 30, 2023
2 parents d22225f + 87b2b3d commit 59ad18a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/omero/util/roi_handling_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@

from builtins import map
from past.utils import old_div
from numpy import asarray, int32, math, zeros, hstack, vstack
from numpy import asarray, int32, zeros, hstack, vstack
import omero.util.script_utils as script_utils
import math


def get_line_data(pixels, x1, y1, x2, y2, line_w=2, the_z=0, the_c=0, the_t=0):
Expand Down

0 comments on commit 59ad18a

Please sign in to comment.