diff --git a/pychunkedgraph/app/app_utils.py b/pychunkedgraph/app/app_utils.py index 9ef54abb2..b46e4b192 100644 --- a/pychunkedgraph/app/app_utils.py +++ b/pychunkedgraph/app/app_utils.py @@ -228,7 +228,7 @@ def ccs(coordinates_nm_): ccs = [np.array(list(cc)) for cc in nx.connected_components(graph)] return ccs - coordinates = np.array(coordinates, dtype=np.int) + coordinates = np.array(coordinates, dtype=int) coordinates_nm = coordinates * cg.meta.resolution max_dist_steps = np.array([4, 8, 14, 28], dtype=float) * np.mean(cg.meta.resolution)